diff options
author | friendica <info@friendica.com> | 2014-03-02 19:40:59 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-02 19:40:59 -0800 |
commit | 7baeb451836752a612ca976db04aeffcafeb621d (patch) | |
tree | 09a75e437616318eecc689c5331344c112fe4afd /include/text.php | |
parent | b98ddc69de966fbb8a47ba5ca4947c6cb3f81618 (diff) | |
download | volse-hubzilla-7baeb451836752a612ca976db04aeffcafeb621d.tar.gz volse-hubzilla-7baeb451836752a612ca976db04aeffcafeb621d.tar.bz2 volse-hubzilla-7baeb451836752a612ca976db04aeffcafeb621d.zip |
some anomolies found when viewing connections in various cases.
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/text.php b/include/text.php index dfd35c769..839e63f5e 100755 --- a/include/text.php +++ b/include/text.php @@ -665,8 +665,11 @@ function contact_block() { if((! is_array($a->profile)) || ($a->profile['hide_friends'])) return $o; - $r = q("SELECT COUNT(abook_id) AS total FROM abook WHERE abook_channel = %d and abook_flags = 0", - intval($a->profile['uid']) + $r = q("SELECT COUNT(abook_id) AS total FROM abook left join xchan on abook_xchan = xchan_hash WHERE abook_channel = %d and abook_flags = 0 and not (xchan_flags & %d) and not (xchan_flags & %d) and not (xchan_flags & %d)", + intval($a->profile['uid']), + intval(XCHAN_FLAGS_HIDDEN), + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_DELETED) ); if(count($r)) { $total = intval($r[0]['total']); @@ -677,8 +680,11 @@ function contact_block() { } else { - $r = q("SELECT abook.*, xchan.* FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash WHERE abook_channel = %d AND abook_flags = 0 ORDER BY RAND() LIMIT %d", + $r = q("SELECT abook.*, xchan.* FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash WHERE abook_channel = %d AND abook_flags = 0 and not (xchan_flags & %d ) and not (xchan_flags & %d ) and not (xchan_flags & %d ) ORDER BY RAND() LIMIT %d", intval($a->profile['uid']), + intval(XCHAN_FLAGS_HIDDEN), + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_DELETED), intval($shown) ); |