sorry I forgot a little bit, I think it was to late yesterday.
If you have already installed this hack and nothing is shown on the manpage please download the hack again or follow this instructions:
download the "newthread.php" into ASCII Mode and backup this file.
look for this code (ca. line 230):
PHP Code:
// update forum stuff
if ($visible==1) {
$DB_site->query("UPDATE forum SET replycount=replycount+1,threadcount=threadcount+1,lastpost='".time()."',lastposter='".addslashes($postusername)."' WHERE forumid IN ($foruminfo[parentlist])");
}
replace it with:
PHP Code:
// update forum stuff
if ($visible==1) {
$DB_site->query("UPDATE forum SET replycount=replycount+1,threadcount=threadcount+1,lastpost='".time()."',lastposter='".addslashes($postusername)."', lasttitle='".addslashes(htmlspecialchars($subject))."' WHERE forumid IN ($foruminfo[parentlist])");
}
save the "newthread.php" and upload it into ASCII Mode.
download the "newreply.php" into ASCII Mode and backup this file.
look for this code (ca. line 278):
PHP Code:
// update forum stuff
if ($visible==1) {
$DB_site->query("UPDATE forum SET replycount=replycount+1,lastpost='".time()."',lastposter='".addslashes($postusername)."' WHERE forumid IN ($foruminfo[parentlist])");
}
replace it with:
PHP Code:
// update forum stuff neuster beitrag auf der startseite
if ($visible==1) {
$DB_site->query("UPDATE forum SET replycount=replycount+1,lastpost='".time()."',lastposter='".addslashes($postusername)."', lasttitle='".addslashes(htmlspecialchars($threadinfo[title]))."' WHERE forumid IN ($foruminfo[parentlist])");
}
save the "newreply.php" and upload it into ASCII Mode.