X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=widgets%2Fwidget_friends.php;h=08b7415c5a3a98a2b0ef508cc53f06c4ae4794bc;hb=195380eb7e9cc74052ec3b9de9fade4338f4fe1d;hp=f661a4f05713be7f1b06a76d19dd2fe8c9d7fbb5;hpb=10a44e2092d33462c69828f879c25b1b25fcb03b;p=friendica-addons.git diff --git a/widgets/widget_friends.php b/widgets/widget_friends.php index f661a4f0..08b7415c 100644 --- a/widgets/widget_friends.php +++ b/widgets/widget_friends.php @@ -2,6 +2,7 @@ use Friendica\Content\Text\HTML; use Friendica\Core\L10n; +use Friendica\DI; function friends_widget_name() { @@ -26,9 +27,9 @@ function friends_widget_size() function friends_widget_content(&$a, $conf) { - $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` + $r = q("SELECT `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']) ); @@ -49,6 +50,6 @@ function friends_widget_content(&$a, $conf) "; $o .= _abs_url(HTML::contactBlock()); - $o .= "profile['nickname']."'>". L10n::t('Connect on Friendica!') .""; + $o .= "profile['nickname']."'>". DI::l10n()->t('Connect on Friendica!') .""; return $o; }