]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/ACLFormatter.php
Replace legacy file/category handling
[friendica.git] / src / Util / ACLFormatter.php
index 7719daf456bcfe42c93a21bb7d508b117b27000f..0c53e08c9365a723638df41ccd5e48936e541bf8 100644 (file)
@@ -84,7 +84,7 @@ final class ACLFormatter
        private function sanitizeItem(string &$item) {
                // The item is an ACL int value
                if (intval($item)) {
-                       $item = '<' . intval(Strings::escapeTags(trim($item))) . '>';
+                       $item = '<' . intval($item) . '>';
                // The item is a allowed ACL character
                } elseif (in_array($item, [Group::FOLLOWERS, Group::MUTUALS])) {
                        $item = '<' . $item . '>';