Fix: removed unneeded HTML escaping
This commit is contained in:
@@ -2365,7 +2365,7 @@ class DFRN
|
||||
$item["body"] = XML::getFirstNodeValue($xpath, "dfrn:env/text()", $entry);
|
||||
$item["body"] = str_replace([' ',"\t","\r","\n"], ['','','',''], $item["body"]);
|
||||
// make sure nobody is trying to sneak some html tags by us
|
||||
$item["body"] = Strings::escapeTags(Strings::base64UrlDecode($item["body"]));
|
||||
$item["body"] = Strings::base64UrlDecode($item["body"]);
|
||||
|
||||
$item["body"] = BBCode::limitBodySize($item["body"]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user