Merge pull request #9534 from MrPetovan/bug/smilies-image-description

Prevent image descriptions from being replaced by local smilies
2022.09-rc
Michael Vogel 2020-11-15 07:21:27 +01:00 zatwierdzone przez GitHub
commit 64ce43cdef
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -1699,7 +1699,9 @@ class BBCode
// Replace non graphical smilies for external posts
if (!$nosmile && !$for_plaintext) {
$text = Smilies::replace($text);
$text = self::performWithEscapedTags($text, ['img'], function ($text) {
return Smilies::replace($text);
});
}
if (!$for_plaintext && DI::config()->get('system', 'big_emojis') && ($simple_html != self::DIASPORA)) {