View Single Post
  #2  
Old 05-24-2009, 11:28 AM
trollis76 trollis76 is offline
Member
 
Join Date: Feb 2009
Posts: 160
Credits: 13,706
trollis76
Default RE: what am i going to change?

Go to the stat.php, and find this part:
PHP Code:
// Loop out code...

$num 0;

$query "SELECT * FROM ".$prefix."owned_adoptables ORDER BY totalclicks DESC LIMIT 10";
$result mysql_query($query);
$num mysql_numrows($result);

$gennum $num;

if(
$num 5){
$gennum $num 5;

And change into this:

PHP Code:
// Loop out code...

$num 0;

$query "SELECT * FROM ".$prefix."owned_adoptables ORDER BY totalclicks DESC LIMIT 20";
$result mysql_query($query);
$num mysql_numrows($result);

$gennum $num;

if(
$num 5){
$gennum $num 5;

Am I right?[hr]
Then you can change the Name of the list in the Lang.php.
Reply With Quote