Escape all the HTML pre-formatted blocks in Smilies::replaceFromArray

pull/7286/head
Hypolite Petovan 2019-06-20 20:22:26 -04:00
rodzic f0849b0a93
commit cdd23e5b6d
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -213,6 +213,7 @@ class Smilies
return $text;
}
$text = preg_replace_callback('/<pre>(.*?)<\/pre>/ism', 'self::encode', $text);
$text = preg_replace_callback('/<code>(.*?)<\/code>/ism', 'self::encode', $text);
if ($no_images) {
@ -231,6 +232,7 @@ class Smilies
$text = self::strOrigReplace($smilies['texts'], $smilies['icons'], $text);
$text = preg_replace_callback('/<code>(.*?)<\/code>/ism', 'self::decode', $text);
$text = preg_replace_callback('/<pre>(.*?)<\/pre>/ism', 'self::decode', $text);
return $text;
}