The attachment text had already been in HTML and mustn't be converted again

This commit is contained in:
Michael 2018-03-14 22:51:14 +00:00
parent 8c42e2e62e
commit 4ba3ba391a
1 changed files with 4 additions and 2 deletions

View File

@ -25,6 +25,7 @@ use Friendica\Util\ParseUrl;
require_once "include/event.php";
require_once "include/html2plain.php";
require_once "include/html2bbcode.php";
require_once "mod/proxy.php";
class BBCode
@ -705,9 +706,10 @@ class BBCode
}
if ($data["description"] != "" && $data["description"] != $data["title"]) {
$return .= sprintf('<blockquote>%s</blockquote>', trim($data["description"]));
// Sanitize the HTML by converting it to BBCode
$bbcode = html2bbcode($data["description"]);
$return .= sprintf('<blockquote>%s</blockquote>', trim(self::convert($bbcode)));
}
if ($data["type"] == "link") {
$return .= sprintf('<sup><a href="%s">%s</a></sup>', $data['url'], parse_url($data['url'], PHP_URL_HOST));
}