mirror of
https://github.com/e107inc/e107.git
synced 2025-07-30 19:30:25 +02:00
Bugtracker #4048 - str_replace fix to remove rogue ;
This commit is contained in:
@@ -10,7 +10,7 @@ if($pref['smiley_activate'])
|
||||
$code_text = $tp->e_emote->filterEmotesRev($code_text);
|
||||
}
|
||||
|
||||
$search = array(E_NL,'\','$', '<');
|
||||
$search = array(E_NL,'\','$', '<');
|
||||
$replace = array("\r\n","\\",'$', '<');
|
||||
$code_text = str_replace($search, $replace, $code_text);
|
||||
|
||||
|
Reference in New Issue
Block a user