Changeset 350 for trunk/user.php
- Timestamp:
- Mar 3, 2010, 12:50:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user.php
r290 r350 26 26 if(array_key_exists('user', $_GET) and Licence(LICENCE_MODERATOR)) 27 27 { 28 $Query = 'SELECT *, ('; 29 foreach($TranslationTree as $Group) 30 if($Group['TablePrefix'] != '') 31 $Query .= '(SELECT count(*) FROM `'.$Group['TablePrefix'].'` WHERE User = '.$_GET['user'].' AND User <> 0 AND Complete = 1) + '; 32 $Query .= '0) as NumberTranslate FROM `user` WHERE ID = '.$_GET['user']; 28 $Query = 'SELECT * FROM `user` WHERE ID = '.$_GET['user']; 33 29 $LineUser = mysql_fetch_array($Database->SQLCommand($Query)); 34 30 … … 38 34 echo('Poslední připojení: <strong>'.$LineUser['LastLogin'].'</strong><br />'); 39 35 echo('Poslední IP: <strong>'.$LineUser['LastIP'].'</strong><br />'); 40 echo('Počet přeložených: <a href="TranslationList.php?user='.$_GET['user'].'&action=userall" title="Zobrazit Všechny jeho přeložené texty"><strong>'.$LineUser[' NumberTranslate'].'</strong></a><br />');36 echo('Počet přeložených: <a href="TranslationList.php?user='.$_GET['user'].'&action=userall" title="Zobrazit Všechny jeho přeložené texty"><strong>'.$LineUser['TranslatedCount'].'</strong></a><br />'); 41 37 echo('Email: <strong>'.$LineUser['Email'].'</strong><br />'); 42 38 echo('<br />
Note:
See TracChangeset
for help on using the changeset viewer.