From: Roland Häder Date: Sun, 13 May 2018 08:20:15 +0000 (+0200) Subject: reverted back ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=87dbe0352142200330b4414f292efe4658c5fb18;p=friendica.git reverted back ... Signed-off-by: Roland Häder --- diff --git a/mod/_well_known.php b/mod/_well_known.php index 4f247abef8..782dc7a1b1 100644 --- a/mod/_well_known.php +++ b/mod/_well_known.php @@ -43,7 +43,7 @@ function wk_social_relay() $tags = []; if ($scope == SR_SCOPE_TAGS) { - $server_tags = get_config('system', 'relay_server_tags'); + $server_tags = Config::get('system', 'relay_server_tags'); $tagitems = explode(",", $server_tags); /// @todo Check if it was better to use "strtolower" on the tags @@ -52,7 +52,7 @@ function wk_social_relay() $tags[$tag] = $tag; } - if (get_config('system', 'relay_user_tags')) { + if (Config::get('system', 'relay_user_tags')) { $terms = q("SELECT DISTINCT(`term`) FROM `search`"); foreach ($terms AS $term) {