|
From: Florin C B. <ory...@us...> - 2014-09-24 03:10:20
|
Update of /cvsroot/mxbb/core/includes In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv10563 Modified Files: mx_functions_tools.php Log Message: Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** mx_functions_tools.php 9 May 2014 07:51:42 -0000 1.67 --- mx_functions_tools.php 24 Sep 2014 03:10:17 -0000 1.68 *************** *** 1947,1961 **** } ! if ( !empty($this->message) ) { ! if ( !$error ) { ! if ( $this->bbcode_on ) { $bbcode_uid = $mx_bbcode->make_bbcode_uid(); } ! ! $privmsg_message = $this->prepare_message(addslashes($this->message), $this->html_on, $this->bbcode_on, $this->smilies_on, $bbcode_uid); ! $privmsg_message = str_replace('\\\n', '\n', $privmsg_message); } } --- 1947,1964 ---- } ! if (!empty($this->message)) { ! if (!$error) { ! if ($this->bbcode_on) { $bbcode_uid = $mx_bbcode->make_bbcode_uid(); } ! ! if (method_exists($this, 'lookup')) ! { ! $privmsg_message = $this->prepare_message(addslashes($this->message), $this->html_on, $this->bbcode_on, $this->smilies_on, $bbcode_uid); ! $privmsg_message = str_replace('\\\n', '\n', $privmsg_message); ! } } } |