Merge pull request #7748 from MrPetovan/bug/7747-fix-mod-item-url-regex

Prevent empty [url] label regular expression to break image insertion
2022.09-rc
Michael Vogel 2019-10-16 20:38:15 +02:00 zatwierdzone przez GitHub
commit 24289fb004
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -230,7 +230,7 @@ function item_post(App $a) {
} }
// Convert links with empty descriptions to links without an explicit description // Convert links with empty descriptions to links without an explicit description
$body = preg_replace('(\[url=(.*?)\]\[\/url\])ism', '[url]$1[/url]', $body); $body = preg_replace('#\[url=([^\]]*?)\]\[/url\]#ism', '[url]$1[/url]', $body);
if (!empty($orig_post)) { if (!empty($orig_post)) {
$str_group_allow = $orig_post['allow_gid']; $str_group_allow = $orig_post['allow_gid'];