]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friends.php
Update obsolete App::getBaseUrl calls to DI::baseUrl
[friendica-addons.git] / widgets / widget_friends.php
index f661a4f05713be7f1b06a76d19dd2fe8c9d7fbb5..37fc30dce685cd48e434fdcbab04fa6f4c0acf97 100644 (file)
@@ -2,6 +2,7 @@
 
 use Friendica\Content\Text\HTML;
 use Friendica\Core\L10n;
+use Friendica\DI;
 
 function friends_widget_name()
 {
@@ -49,6 +50,6 @@ function friends_widget_content(&$a, $conf)
 
        </style>";
        $o .= _abs_url(HTML::contactBlock());
-       $o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
+       $o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
        return $o;
 }