View Single Post
  #5  
Old 06-22-2011, 06:57 PM
Chibi_Chicken Chibi_Chicken is offline
Niwatori Kami
 
Join Date: Jun 2011
Posts: 63
Gender: Unknown/Other
Credits: 5,161
Chibi_Chicken is on a distinguished road
Default

Quote:
Originally Posted by Gloometh View Post
Is there any chance the changes will be posted sooner then the release? Or that the release will be soon? My site is based off of the pound feature, I kinda need that. :c
A simple fix is find lines 43 44 and 49 and change the $result to $result1
or find this code:
Code:
        
 $query = "SELECT * FROM ".$prefix."adoptables WHERE type='$type'";
         $result = runquery($query);
         $num = @mysql_numrows($result);

         $i=0;
         while ($i < 1) {

         $cost=@mysql_result($result,$i,"cost"); //The cost of adoption

         $i++;
         }
this var $result is replacing the first one that is still getting the pets for the pound. change it to something else and it will load all of the pets.
however if you still have lots of pound pets it going to be a really long list.
Reply With Quote