MyBB Community Forums

Full Version: Problem - answer!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Helllo !!

please, help me

i have problem

how anybody write topic, other person answer for this problem standart is: RE: Topic name, but i want, example Odp:

how it do?

please help Cool
Line 708 of newreply.php:
		$subject = "RE: " . $thread['subject'];

Change to:
		$subject = "Odp: " . $thread['subject'];
I have

$subject = preg_replace('#RE:\s?#i', '', $quoted_post['subject']);
						$subject = "RE: ".$subject;

I have MyBB 1.2.1

Change it is?
Replace them both.
Change to:
$subject = preg_replace('#RE:\s?#i', '', $quoted_post['subject']);
$subject = preg_replace('#Odp:\s?#i', '', $subject);
$subject = "Odp: ".$subject;