Merge pull request #1097 from annando/acvlang
[friendica-addons.git/.git] / widgets / widget_friendheader.php
index 8ce1eac..c403129 100644 (file)
@@ -25,9 +25,9 @@ function friendheader_widget_size()
 
 function friendheader_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'])
        );
        if (!count($r)) {