X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FProtocol%2FRelay.php;h=da9a2e3923484d62130a4eb60031a62d59814e37;hb=e8becc153856debb927d7afac17bae5c80a0abb7;hp=b604f5ab37951459d22ee643c7055ecdacd6cfca;hpb=a44d200c211eff891f7d275b7e54ded33a50c446;p=friendica.git diff --git a/src/Protocol/Relay.php b/src/Protocol/Relay.php index b604f5ab37..da9a2e3923 100644 --- a/src/Protocol/Relay.php +++ b/src/Protocol/Relay.php @@ -77,7 +77,7 @@ class Relay if ($scope == SR_SCOPE_TAGS) { $server_tags = $config->get('system', 'relay_server_tags'); $tagitems = explode(',', mb_strtolower($server_tags)); - foreach ($tagitems AS $tag) { + foreach ($tagitems as $tag) { $systemTags[] = trim($tag, '# '); } @@ -90,7 +90,7 @@ class Relay $deny_tags = $config->get('system', 'relay_deny_tags'); $tagitems = explode(',', mb_strtolower($deny_tags)); - foreach ($tagitems AS $tag) { + foreach ($tagitems as $tag) { $tag = trim($tag, '# '); $denyTags[] = $tag; }