X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmatch.php;h=47d98797944d9f3a566b544d47f295a3d4e13d12;hb=b916ec9733bd276b9b15097b433483d1d8b895a3;hp=c187546b32d77eb09350c34592855dc40be82d5d;hpb=5dfee31108fc92a7abca5f99b8fdf1b34aec5dd5;p=friendica.git diff --git a/mod/match.php b/mod/match.php index c187546b32..47d9879794 100644 --- a/mod/match.php +++ b/mod/match.php @@ -1,12 +1,26 @@ . + * */ use Friendica\App; use Friendica\Content\Widget; -use Friendica\Core\Config; -use Friendica\Core\L10n; use Friendica\Core\Renderer; use Friendica\Core\Search; use Friendica\Database\DBA; @@ -46,7 +60,7 @@ function match_content(App $a) return ''; } if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) { - notice(DI::l10n()->t('No keywords to match. Please add keywords to your default profile.') . EOL); + notice(DI::l10n()->t('No keywords to match. Please add keywords to your profile.') . EOL); return ''; } @@ -56,7 +70,7 @@ function match_content(App $a) $params['s'] = $tags; $params['n'] = 100; - if (strlen(Config::get('system', 'directory'))) { + if (strlen(DI::config()->get('system', 'directory'))) { $host = Search::getGlobalDirectory(); } else { $host = DI::baseUrl();