Articles index » phpBB 3.0 » Remove RE: from replies

Remove RE: from replies

This will simply remove RE: from the replies.

Submitted by EY on 03 Jun 2008, 00:27

Please make sure you backup your forum before editing any files

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!
 

License:

All articles in the knowledge base are licensed under the phpbbmodders beerware-nc license.

Back to category


Articles index » phpBB 3.0 » Remove RE: from replies