]> git.mxchange.org Git - friendica-addons.git/commitdiff
[widgets] Remove uses of deprecated profile field
authorHypolite Petovan <hypolite@mrpetovan.com>
Tue, 28 Jan 2020 04:09:59 +0000 (23:09 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Tue, 28 Jan 2020 04:09:59 +0000 (23:09 -0500)
widgets/widget_friendheader.php
widgets/widget_friends.php

index 8ce1eac678a955d7ffe6c0a6cc42ba49e79bb4b1..f47b1b572c5e021cebdadbc5e249a3a74e392c40 100644 (file)
@@ -27,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)) {
index c49d052dd454cf652b3fcf1f96d8dc62f012ca7d..a3951cdc884387da4ce967daa2e1b09a8f886bf7 100644 (file)
@@ -29,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'])
        );