|
|
|
|
@ -556,10 +556,14 @@ function rep_specialchars_output($str, $enctype='', $mode='', $newlines=TRUE)
|
|
|
|
|
}
|
|
|
|
|
else if ($mode=='remove')
|
|
|
|
|
$str = strip_tags($str);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$out = strtr($str, $encode_arr);
|
|
|
|
|
|
|
|
|
|
// avoid douple quotation of &
|
|
|
|
|
$out = preg_replace('/&([A-Za-z]{2,6}|#[0-9]{2,4});/', '&\\1;', strtr($str, $encode_arr));
|
|
|
|
|
|
|
|
|
|
// commented out, because this breaks displaying of text with entity strings
|
|
|
|
|
// in text messages.
|
|
|
|
|
//$out = preg_replace('/&([A-Za-z]{2,6}|#[0-9]{2,4});/', '&\\1;', $out);
|
|
|
|
|
|
|
|
|
|
return $newlines ? nl2br($out) : $out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|