Prevent empty [url] label regular expression to break image insertion

This commit is contained in:
Hypolite Petovan 2019-10-16 13:53:16 -04:00
parent 813d71f291
commit e3915d2f93
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ function item_post(App $a) {
}
// 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)) {
$str_group_allow = $orig_post['allow_gid'];