Merge pull request #7738 from annando/clean-url
Convert links with empty descriptionspull/7746/head
commit
c07cb2c8f3
|
@ -229,6 +229,9 @@ function item_post(App $a) {
|
||||||
$body .= $att_bbcode;
|
$body .= $att_bbcode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert links with empty descriptions to links without an explicit description
|
||||||
|
$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'];
|
||||||
$str_contact_allow = $orig_post['allow_cid'];
|
$str_contact_allow = $orig_post['allow_cid'];
|
||||||
|
|
Loading…
Reference in New Issue