There were undecoded entities in the title
This commit is contained in:
parent
1b2f67906b
commit
247f866655
1 changed files with 1 additions and 2 deletions
|
@ -128,10 +128,9 @@ function get_attachment_data($body) {
|
||||||
if ($matches[1] != "")
|
if ($matches[1] != "")
|
||||||
$title = $matches[1];
|
$title = $matches[1];
|
||||||
|
|
||||||
//$title = htmlentities($title, ENT_QUOTES, 'UTF-8', false);
|
|
||||||
$title = bbcode(html_entity_decode($title, ENT_QUOTES, 'UTF-8'), false, false, true);
|
$title = bbcode(html_entity_decode($title, ENT_QUOTES, 'UTF-8'), false, false, true);
|
||||||
|
$title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
|
||||||
$title = str_replace(array("[", "]"), array("[", "]"), $title);
|
$title = str_replace(array("[", "]"), array("[", "]"), $title);
|
||||||
|
|
||||||
if ($title != "")
|
if ($title != "")
|
||||||
$data["title"] = $title;
|
$data["title"] = $title;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue