In the instructions it says to find:
Quote:
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if ($postdone[$post[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$postbits .= getpostbit($post);
}
|
Instead of that, I have:
Quote:
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if ($postdone[$post[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$post[postcount] = ++$postcount;
$post[totalposts] = $totalposts;
$postbits .= getpostbit($post);
}
|
Probably ebcause of another installed hack. Is there any way I can add the info to what I have already?