MyBB Community Forums

Full Version: getting rid of RE:
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to get rid of the text in replying posts that says RE: thread title here. how do I do that?
1. This should be in the Code modifications forum.
2. Backup your newreply.php file before editing it. Newreply.php can be found at the root of your forum directory.

Find and Remove

	// If this post was the post for which a quote button was clicked, set the subject
if($pid == $quoted_post['pid'])
{
$subject = preg_replace('#RE:\s?#i', '', $quoted_post['subject']);
$subject = "RE: ".$subject;
}
$message .= parse_quoted_message($quoted_post);
$quoted_ids[] = $quoted_post['pid'];

Find and Remove

$subject = "RE: " . $thread['subject'];