MyBB Community Forums

Full Version: [F] Private Message icon not working after 1.2.7 upgrade
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Whenever I reply/forward a message I get in my PM box the icon goes to a blank image of a letter. When I receive a message it shows the letter with an up arrow. Is this a bug with the 1.2.7 upgrade?
I already reported this in the staff room and fixed it. I'll go ahead and mark it as fixed here too.
This bug has been fixed in the latest code.

Please note the latest code is not live on the site or for download. An update will be released which contains this fix.
Tikitiki Wrote:This bug has been fixed in the latest code.

Please note the latest code is not live on the site or for download. An update will be released which contains this fix.
Do you know when the update will be released?
That could be after a month or so, since 1.2.7 has been just released.
I would like to see the fix for this please
In private.php

find:

if($do != "forward" || $do != "reply")
{
	$do = "";
}

and replace with

if($do != "forward" && $do != "reply")
{
	$do = "";
}

Just so you know I was planning to post the fix, but I've been up to my neck with other stuff
Thanks