]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friendheader.php
Update obsolete App::getBaseUrl calls to DI::baseUrl
[friendica-addons.git] / widgets / widget_friendheader.php
index 7df1ff7c24910eee5cb2e9fb0c4d0262017a9d70..4d852e2738bdaff963c7d5a78023d16016e107f6 100644 (file)
@@ -2,6 +2,7 @@
 
 use Friendica\Content\Text\HTML;
 use Friendica\Core\L10n;
+use Friendica\DI;
 
 function friendheader_widget_name()
 {
@@ -47,7 +48,7 @@ function friendheader_widget_content(&$a, $conf)
 
        </style>";
        $o .= _abs_url(HTML::contactBlock());
-       $o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>";
+       $o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>";
 
        return $o;
 }