Avoid double encoding of the attachment content

This commit is contained in:
Michael 2018-03-14 21:47:24 +00:00
parent f351391f17
commit 8c42e2e62e
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ class BBCode
}
if ($data["description"] != "" && $data["description"] != $data["title"]) {
$return .= sprintf('<blockquote>%s</blockquote>', trim(BBCode::convert($data["description"])));
$return .= sprintf('<blockquote>%s</blockquote>', trim($data["description"]));
}
if ($data["type"] == "link") {