MyBB Community Forums

Full Version: [F] Private message presets
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
when you use a URL such as this: http://community.mybboard.net/private.ph...bject=test

should not having &subject=test make the subject say test?

yet it doesn't do that here or on my board
I guess so...

In private.php, add:
	$subject = htmlspecialchars_uni($mybb->input['subject']);
After:
	$posticons = get_post_icons();
	$previewmessage = $mybb->input['message'];
	$message = htmlspecialchars_uni($mybb->input['message']);
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.
thanks for the quick update, and the fast reply