]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friends.php
Merge pull request #951 from MrPetovan/task/7817-custom-profile-fields
[friendica-addons.git] / widgets / widget_friends.php
index b5a078861e949f0229f63bd26f83f98b40e8ccc6..a3951cdc884387da4ce967daa2e1b09a8f886bf7 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 
+use Friendica\Content\Text\HTML;
 use Friendica\Core\L10n;
+use Friendica\DI;
 
 function friends_widget_name()
 {
@@ -27,7 +29,7 @@ function friends_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'])
        );
 
@@ -47,7 +49,7 @@ function friends_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']."'>". L10n::t('Connect on Friendica!') ."</a>";
+       $o .= _abs_url(HTML::contactBlock());
+       $o .= "<a href='".DI::baseUrl()->get().'/profile/'.$a->profile['nickname']."'>". DI::l10n()->t('Connect on Friendica!') ."</a>";
        return $o;
 }