]> git.mxchange.org Git - friendica.git/commitdiff
Avoid double encoding of the attachment content
authorMichael <heluecht@pirati.ca>
Wed, 14 Mar 2018 21:47:24 +0000 (21:47 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 14 Mar 2018 21:47:24 +0000 (21:47 +0000)
src/Content/Text/BBCode.php

index 9eb5cfd72453b6a46ab89c7ba6d77578d6e0adec..edff3a284646bcb8b3b200ffc925d98e8af17db2 100644 (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") {