View Single Post
  #11  
Old 01-23-2011, 02:13 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 395,598
Hall of Famer is on a distinguished road
Default

Oh interesting, you have an evolution system already? Nice! ^^

Edit: I fixed a glitch in this script, which caused big problem for users running Mysidia Adoptables on a subdirectory. To do this, find the following codes below:

PHP Code:
$article_content $article_content."<div style='text-align:center;'>";
if(
$currentpage 1) {
$newpage $currentpage 1;
$article_content $article_content."<a href='/myadopts.php?page=".$newpage."'><img src='/templates/icons/prev.gif' border=0> Previous Page</a> ";
}
else{
$article_content $article_content."<img src='/templates/icons/prev.gif' border=0> Previouse Page ";
}
if(
$currentpage $totalpages) {
$newpage $currentpage 1;
$article_content $article_content." ::  <a href='/myadopts.php?page=".$newpage."'>Next Page <img src='/templates/icons/next.gif' border=0></a> ";
}
else{
$article_content $article_content." ::  Next Page <img src='/templates/icons/next.gif' border=0>";
}
$article_content $article_content."</div>";

Replace with:

PHP Code:
$article_content $article_content."<div style='text-align:center;'>";
if(
$currentpage 1) {
$newpage $currentpage 1;
$article_content $article_content."<a href='myadopts.php?page=".$newpage."'><img src='/templates/icons/prev.gif' border=0> Previous Page</a> ";
}
else{
$article_content $article_content."<img src='/templates/icons/prev.gif' border=0> Previouse Page ";
}
if(
$currentpage $totalpages) {
$newpage $currentpage 1;
$article_content $article_content." ::  <a href='myadopts.php?page=".$newpage."'>Next Page <img src='/templates/icons/next.gif' border=0></a> ";
}
else{
$article_content $article_content." ::  Next Page <img src='/templates/icons/next.gif' border=0>";
}
$article_content $article_content."</div>";

Now this should work for both users running Mys on their root directory or subdirectory. Enjoy. ^^
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote