MyBB Community Forums

Full Version: Return to post after sending email
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All,

just wondering if there was a way to return to the original post after sending a user an email rather than going to their profile page?

Any help appreciated.

Neil
I don't think that would be possible. I don't think there is a redirect to last forum spot (correct me if I am wrong).

You can redirect to the index if you want though, although it is a core edit.
If you take a look in member.php at around line 2157. It should say:
redirect(get_profile_link($to_user['uid']), $lang->redirect_emailsent);

Replace the above with the below.
redirect("index.php"), $lang->redirect_emailsent);