MyBB Community Forums

Full Version: Removing redirection pages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When we send a post, a redirection page opens.
I want to remove ONLY that redirection pages. I mean not other kind of redirection pages like update profile.
Thanks in advance.
In newreply.php find:

$lang->redirect_newreply .= sprintf($lang->redirect_return_forum, $fid);
redirect($url, $lang->redirect_newreply);

and replace with:

header('Location: '.$url);
Thank you very much.