From d593b40d9a31d00ec4374c60d509812996ff32d9 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 11 Sep 2013 02:03:37 -0700 Subject: assuming this doesn't blow up the internet like the last fix - this is a very old bug that's been reported time and time again and nobody every bothered to debug or even report it somewhere where we could monitor it. It's buried somewhere in my stream, but basically is "things don't work right if you've got 'everybody in my address book' permissions" on "can send me their channel stream and posts". I think this is Michelle's problem and anybody else who has en empty matrix after making lots of connections. --- include/zot.php | 2 +- version.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/zot.php b/include/zot.php index dd6d1842c..9e8dd3dfa 100644 --- a/include/zot.php +++ b/include/zot.php @@ -955,7 +955,7 @@ function public_recips($msg) { $r = array(); $x = q("select channel_hash as hash from channel left join abook on abook_channel = channel_id where abook_xchan = '%s' - and (( " . $col . " & " . PERMS_SPECIFIC . " ) OR ( " . $col . " & " . PERMS_CONTACTS . " )) and ( abook_my_perms & " . $field . " ) ", + and (( " . $col . " & " . PERMS_SPECIFIC . " ) and ( abook_my_perms & " . $field . " )) OR ( " . $col . " & " . PERMS_CONTACTS . " ) ", dbesc($msg['notify']['sender']['hash']) ); diff --git a/version.inc b/version.inc index 23045eee8..335f2639a 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-09-10.432 +2013-09-11.433 -- cgit v1.2.3