MyBB Community Forums

Full Version: Re: command
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

Which file do i need to edit to remove the RE: appearing when memebrs reply to posts please?

Thanks
Remove
<span class="smalltext"><strong> {$post['subject']}</strong></span>
from the postbit template in the Admin CP.
Will that remove the subject as well though? I just want the "RE:" to be removed
Open ./inc/datahandlers/post.php

Find (2x)
$subject = "RE: ".$thread['subject'];

Change into
$subject = $thread['subject'];
Interesting as that isn't a translatable string.
If it were translatable, if different users used different languages, then you would end up a mixture of prefixes around the forum.
* MrD. thinks about this...

Oh yeah, good point, I forgot it was added into the database and not translated on the fly.