diff options
author | friendica <info@friendica.com> | 2013-09-10 22:45:04 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-10 22:45:04 -0700 |
commit | 5e230edb85a2f10c43486e8d12b96e2a6ed1109c (patch) | |
tree | 785a6f72cb09e4af48d7aad18b8bded586ec94de /include/zot.php | |
parent | de777d2f9c7a78c9b43381db2b3369da04750c5c (diff) | |
download | volse-hubzilla-5e230edb85a2f10c43486e8d12b96e2a6ed1109c.tar.gz volse-hubzilla-5e230edb85a2f10c43486e8d12b96e2a6ed1109c.tar.bz2 volse-hubzilla-5e230edb85a2f10c43486e8d12b96e2a6ed1109c.zip |
well that really stuffed things up...
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zot.php b/include/zot.php index 6deee4d52..dd6d1842c 100644 --- a/include/zot.php +++ b/include/zot.php @@ -945,9 +945,9 @@ function public_recips($msg) { if($msg['notify']['sender']['url'] === z_root()) - $sql = " where (( " . $col . " & " . PERMS_NETWORK . " ) or ( " . $col . " & " . PERMS_SITE . " )) "; + $sql = " where (( " . $col . " & " . PERMS_NETWORK . " ) or ( " . $col . " & " . PERMS_SITE . " ) or ( " . $col . " & " . PERMS_PUBLIC . ")) "; else - $sql = " where ( " . $col . " & " . PERMS_NETWORK . " ) " ; + $sql = " where (( " . $col . " & " . PERMS_NETWORK . " ) or ( " . $col . " & " . PERMS_PUBLIC . ")) "; $r = q("select channel_hash as hash from channel " . $sql ); |