I replaced the code but I still show up broke....in 10 richest. No change. Any clue...
ps. looking forward to that new template release...
Quote:
Originally posted by Blue2000
here you go fella
find
PHP Code:
if ($action=="top10") {
$topresult = $DB_site->query("SELECT * FROM user ORDER BY storep+bank DESC LIMIT 25");
while ($top = mysql_fetch_array($topresult)) {
if (($counter++ % 2) != 0) {
$backcolor="#13486D";
$bgclass="alt1";
} else {
$backcolor = "#1C5780";
$bgclass="alt2";
}
eval("\$top10rich .= \"".gettemplate("store_top10_bit")."\";");
}
eval("dooutput(\"".gettemplate("store_top10_main")."\");");
}
replace with
PHP Code:
if ($action=="top10") {
$topresult = $DB_site->query("SELECT * FROM user ORDER BY storep+bank DESC LIMIT 25");
while ($top = mysql_fetch_array($topresult)) {
if (($counter++ % 2) != 0) {
$backcolor="#13486D";
$bgclass="alt1";
} else {
$backcolor = "#1C5780";
$bgclass="alt2";
}
$allmoney = $top[bank]+$top[storep];
eval("\$top10rich .= \"".gettemplate("store_top10_bit")."\";");
}
eval("dooutput(\"".gettemplate("store_top10_main")."\");");
}
text file updated
|