mirror of
https://github.com/friendica/friendica
synced 2025-04-28 07:44:23 +02:00
Code Style: Replace "AS" with "as"
This commit is contained in:
parent
96b41fdb67
commit
9961943b73
10 changed files with 39 additions and 39 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue