fix ally pop climbers

This commit is contained in:
unknown
2012-10-09 13:04:45 +02:00
parent 605201290b
commit 58d63dab6d
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -2131,7 +2131,7 @@ class MYSQL_DB {
}
function getARanking() {
$q = "SELECT id,name,tag FROM " . TB_PREFIX . "alidata where id != '' ORDER BY id DESC";
$q = "SELECT id,name,tag,oldrank FROM " . TB_PREFIX . "alidata where id != '' ORDER BY id DESC";
$result = mysql_query($q, $this->connection);
return $this->mysql_fetch_all($result);
}