diff options
author | friendica <info@friendica.com> | 2011-12-05 02:16:59 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-05 02:16:59 -0800 |
commit | c8d5274ceea95bdf9df5ca2ab698fa9860319e31 (patch) | |
tree | e2d977f26214e30ba4e6e6059d58e26ad287bce3 /include/api.php | |
parent | 116e20c89dc5874912c7e3870623c747f75238ce (diff) | |
download | volse-hubzilla-c8d5274ceea95bdf9df5ca2ab698fa9860319e31.tar.gz volse-hubzilla-c8d5274ceea95bdf9df5ca2ab698fa9860319e31.tar.bz2 volse-hubzilla-c8d5274ceea95bdf9df5ca2ab698fa9860319e31.zip |
data structures to support hidden friends
Diffstat (limited to 'include/api.php')
-rw-r--r-- | include/api.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/api.php b/include/api.php index 1196e0aac..9cf4551bd 100644 --- a/include/api.php +++ b/include/api.php @@ -296,7 +296,7 @@ // count friends $r = q("SELECT COUNT(`id`) as `count` FROM `contact` WHERE `uid` = %d AND `rel` IN ( %d, %d ) - AND `self`=0 AND `blocked`=0", + AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0", intval($uinfo[0]['uid']), intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND) @@ -305,7 +305,7 @@ $r = q("SELECT COUNT(`id`) as `count` FROM `contact` WHERE `uid` = %d AND `rel` IN ( %d, %d ) - AND `self`=0 AND `blocked`=0", + AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0", intval($uinfo[0]['uid']), intval(CONTACT_IS_FOLLOWER), intval(CONTACT_IS_FRIEND) |