View Single Post
  #3  
Old 05-24-2009, 11:31 AM
Bloodrun's Avatar
Bloodrun Bloodrun is offline
I am, who I am.
 
Join Date: Apr 2009
Posts: 532
Gender: Male
Credits: 29,495
Bloodrun
Send a message via Yahoo to Bloodrun
Default RE: what am i going to change?

Quote:
Originally Posted by trollis76
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.
You are correct. Nicely answered.

Just point out that the thing he is changing is this part:

PHP Code:
$query "SELECT * FROM ".$prefix."owned_adoptables ORDER BY totalclicks DESC LIMIT 10"
To this:

PHP Code:
$query "SELECT * FROM ".$prefix."owned_adoptables ORDER BY totalclicks DESC LIMIT 20"
Reply With Quote