Xenon's Prevent Double Posting hack fix:
----------------------------
Open newreply.php
----------------------------
Find:
PHP Code:
if ($visible) {
$goto = "showthread.php?s=$session[sessionhash]&postid=" . $lastpost['postid'] . "#post" . $lastpost['postid'];
} else {
$goto = "forumdisplay.php?s=$session[sessionhash]&forumid=$threadinfo[forumid]";
}
eval("standardredirect(\"".gettemplate("redirect_postthanks")."\",\"$goto\");");
exit;
}
Replace with:
PHP Code:
if ($visible) {
$goto = "showthread.php?s=$session[sessionhash]&goto=lastpost&threadid=$threadid";
} else {
$goto = "forumdisplay.php?s=$session[sessionhash]&forumid=$threadinfo[forumid]";
}
@header ("Location: $goto");
exit;
}
// Dev note - if user has double posted he had the last post in thread anyway. Showthread link was changed because of this.