MyBB Community Forums

Full Version: Remove Re-Directed on Personal Pad
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Basically I want a way to remove the re-direction back to the user cp main page after saving the data in the personal pad. Anyone know off the top of their head what file the re-direct text would be in?
Turn off friendly redirection pages under server and optimization options.
Er, I've had those off for years and they have nothing to do with this.
Line 1985 of ./usercp.php:

redirect("usercp.php", $lang->redirect_notepadupdated);

Try changing that to:

redirect("usercp.php?action=notepad", $lang->redirect_notepadupdated);

See what that does. That's assuming you want it to just load the personal pad again.
You marvelous man! :)