Move PConfig::set() to DI::pConfig()->set()
[friendica-addons.git/.git] / widgets / widget_friendheader.php
index f803366..4d852e2 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 
+use Friendica\Content\Text\HTML;
 use Friendica\Core\L10n;
+use Friendica\DI;
 
 function friendheader_widget_name()
 {
@@ -45,8 +47,8 @@ function friendheader_widget_content(&$a, $conf)
                .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
 
        </style>";
-       $o .= _abs_url(contact_block());
-       $o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>";
+       $o .= _abs_url(HTML::contactBlock());
+       $o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>";
 
        return $o;
 }