From: Michael Date: Sat, 24 Mar 2018 19:40:35 +0000 (+0000) Subject: standards X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=341499e8ca70d93e0e9721c96844bf3c354641f0;p=friendica.git standards --- diff --git a/src/Core/ACL.php b/src/Core/ACL.php index 78d2ca41bf..4e8bf6abde 100644 --- a/src/Core/ACL.php +++ b/src/Core/ACL.php @@ -221,7 +221,8 @@ class ACL extends BaseObject return $o; } - private static function fixACL(&$item) { + private static function fixACL(&$item) + { $item = intval(str_replace(['<', '>'], ['', ''], $item)); } @@ -247,10 +248,10 @@ class ACL extends BaseObject $deny_gid = $matches[1]; // Reformats the ACL data so that it is accepted by the JS frontend - array_walk($allow_cid, 'self::fixACL'); - array_walk($allow_gid, 'self::fixACL'); - array_walk($deny_cid, 'self::fixACL'); - array_walk($deny_gid, 'self::fixACL'); + array_walk($allow_cid, 'self::fixACL'); + array_walk($allow_gid, 'self::fixACL'); + array_walk($deny_cid, 'self::fixACL'); + array_walk($deny_gid, 'self::fixACL'); Contact::pruneUnavailable($allow_cid);