hmm, in your non vb-script after that:
Code:
<input type="hidden" name="s" value="">
<input type="hidden" name="action" value="postreply">
add this:
Code:
<input type="hidden" name="redirectnonvb" value="1">
then open newreply.php
find:
PHP Code:
// redirect
if ($visible) {
$goto="showthread.php?s=$session[sessionhash]&postid=$postid#post$postid";
} else {
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$threadinfo[forumid]";
}
eval("standardredirect(\"".gettemplate("redirect_postthanks")."\",\"$goto\");");
and change to this:
PHP Code:
// redirect
if ($visible) {
$goto="showthread.php?s=$session[sessionhash]&postid=$postid#post$postid";
} else if($redirectnonvb!=1) {
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$threadinfo[forumid]";
} else {
$goto="url where to redirect :)";
}
eval("standardredirect(\"".gettemplate("redirect_postthanks")."\",\"$goto\");");