Changeset 350 for trunk/user.php


Ignore:
Timestamp:
Mar 3, 2010, 12:50:21 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Počet přeložených textů se nyní uchovává v tabulce user ve sloupci TranslatedCount podobně jako sloupec XP. Hodnoty se přepočítávají stejně jako XP při ukládání textů.
  • Přidáno: V administraci přidána funkce mazání starých prázdných účtů.
  • Přidáno: V administraci funkce mazání chybových záznamů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/user.php

    r290 r350  
    2626if(array_key_exists('user', $_GET) and Licence(LICENCE_MODERATOR))
    2727
    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'];
    3329  $LineUser = mysql_fetch_array($Database->SQLCommand($Query));
    3430   
     
    3834  echo('Poslední připojení: <strong>'.$LineUser['LastLogin'].'</strong><br />');
    3935  echo('Poslední IP: <strong>'.$LineUser['LastIP'].'</strong><br />');
    40   echo('Počet přeložených: <a href="TranslationList.php?user='.$_GET['user'].'&amp;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'].'&amp;action=userall" title="Zobrazit Všechny jeho přeložené texty"><strong>'.$LineUser['TranslatedCount'].'</strong></a><br />');
    4137  echo('Email: <strong>'.$LineUser['Email'].'</strong><br />');
    4238  echo('<br />
Note: See TracChangeset for help on using the changeset viewer.