Knowledge Base

Remove RE: from replies
Article ID: 345
Written By: Elias
Written On: Mon Apr 14, 2008 6:27 pm
Description: Here is how to remove the RE: from replies.
link to this article on phpbb.com: Select All
[kb=remove-re-from-replies]Remove RE: from replies[/kb]
link to this article on your own board: Select All
[url=http://www.phpbb.com/kb/article/remove-re-from-replies/]Knowledge Base - Remove RE: from replies[/url]

First make a full backup of your forums.

Then follow these easy instrutions:

Open posting.php

FIND:
Code: Select all
if (($mode == 'reply' || $mode == 'quote') && !$submit && !$preview && !$refresh)
{
    $post_data['post_subject'] = ((strpos($post_data['post_subject'], 'Re: ') !== 0) ? 'Re: ' : '') . censor_text($post_data['post_subject']);
}


REPLACE WITH:
Code: Select all
if (($mode == 'reply' || $mode == 'quote') && !$submit && !$preview && !$refresh)
{
    $post_data['post_subject'] = ((strpos($post_data['post_subject'], 'Re: ') !== 0) ? '' : '') . censor_text($post_data['post_subject']);
}


Save replace file.