Quote:
Originally posted by Boofo
Has anyone figured out why it takes on the new posters name in the private reply instead of the original poster's name? I did the fix (in 2 places) in the newreply.php and it works fine in the regular messages, just not in the private ones when quoting.
|
In private.php replace this:
Code:
eval("\$message[message] = \"".gettemplate("priv_reply",1,0)."\";");
With this:
Code:
$message['message'] = preg_replace('#^/me(.*)$#im', "* $fromuserinfo[username]\\1", $message['message']);
eval("\$message[message] = \"".gettemplate("priv_reply",1,0)."\";");