Merge pull request #2527 from annando/1605-entities-link
Bugfix: The url in attachments had problems with entities
This commit is contained in:
commit
1383c73c8d
|
@ -116,6 +116,8 @@ function get_attachment_data($body) {
|
||||||
if ($matches[1] != "")
|
if ($matches[1] != "")
|
||||||
$url = $matches[1];
|
$url = $matches[1];
|
||||||
|
|
||||||
|
$url = html_entity_decode($url, ENT_QUOTES, 'UTF-8');
|
||||||
|
|
||||||
if ($url != "")
|
if ($url != "")
|
||||||
$data["url"] = $url;
|
$data["url"] = $url;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user