Index: pages.inc
===================================================================
--- pages.inc	(revision 513)
+++ pages.inc	(working copy)
@@ -498,7 +498,7 @@
 
     case 'top-people':
       // Get summaries of people having most active translations per language.
-      $result = db_query_range("SELECT COUNT(DISTINCT t.sid) AS sum, u.name, u.uid FROM {l10n_community_translation} t LEFT JOIN {users} u ON t.uid_entered = u.uid WHERE t.is_active = 1 AND t.is_suggestion = 0 AND t.language = '%s' GROUP BY t.uid_entered ORDER BY sum DESC", $id, 0, 10);
+      $result = db_query_range("SELECT COUNT(DISTINCT t.sid) AS sum, u.name, u.uid FROM {l10n_community_translation} t LEFT JOIN {users} u ON t.uid_entered = u.uid WHERE t.is_active = 1 AND t.is_suggestion = 0 AND t.language = '%s' GROUP BY t.uid_entered, u.name, u.uid ORDER BY sum DESC", $id, 0, 10);
       $accounts = array();
       while ($account = db_fetch_object($result)) {
         $accounts[] = $account;
