From: Michael Vogel Date: Sat, 22 Jun 2019 20:06:43 +0000 (+0200) Subject: Revert "Escape all the HTML pre-formatted blocks in Smilies::replaceFromArray" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1883cfba24905f29e6d9c265813d9d5a5200aa02;p=friendica.git Revert "Escape all the HTML pre-formatted blocks in Smilies::replaceFromArray" --- diff --git a/src/Content/Smilies.php b/src/Content/Smilies.php index 041662e1eb..9fbfd2d629 100644 --- a/src/Content/Smilies.php +++ b/src/Content/Smilies.php @@ -213,7 +213,6 @@ class Smilies return $text; } - $text = preg_replace_callback('/
(.*?)<\/pre>/ism', 'self::encode', $text);
 		$text = preg_replace_callback('/(.*?)<\/code>/ism', 'self::encode', $text);
 
 		if ($no_images) {
@@ -232,7 +231,6 @@ class Smilies
 		$text = self::strOrigReplace($smilies['texts'], $smilies['icons'], $text);
 
 		$text = preg_replace_callback('/(.*?)<\/code>/ism', 'self::decode', $text);
-		$text = preg_replace_callback('/
(.*?)<\/pre>/ism', 'self::decode', $text);
 
 		return $text;
 	}