]> git.mxchange.org Git - friendica.git/commitdiff
reverted back ...
authorRoland Häder <roland@mxchange.org>
Sun, 13 May 2018 08:20:15 +0000 (10:20 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 13 May 2018 08:20:15 +0000 (10:20 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
mod/_well_known.php

index 4f247abef8fb937875773c5becb740fec45a024b..782dc7a1b145973eb2a1b061701f89c37ac17d80 100644 (file)
@@ -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) {