]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friendheader.php
Twitter: Fetch the contact relation
[friendica-addons.git] / widgets / widget_friendheader.php
index df03419f4086278b83f50e5edef65259b3c237e0..f47b1b572c5e021cebdadbc5e249a3a74e392c40 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 
-use Friendica\Core\L10n;
+use Friendica\Content\Text\HTML;
+use Friendica\DI;
 
 function friendheader_widget_name()
 {
@@ -26,7 +27,7 @@ function friendheader_widget_content(&$a, $conf)
 {
        $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
                        LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
-                       WHERE `user`.`uid` = %s AND `profile`.`is-default` = 1 LIMIT 1",
+                       WHERE `user`.`uid` = %s LIMIT 1",
                intval($conf['uid'])
        );
        if (!count($r)) {
@@ -45,8 +46,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->getBaseURL().'/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>". DI::l10n()->t('Get added to this list!') ."</a>";
 
        return $o;
 }