well that really stuffed things up...

This commit is contained in:
friendica
2013-09-10 22:45:04 -07:00
parent de777d2f9c
commit 5e230edb85
2 changed files with 3 additions and 3 deletions

View File

@@ -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 );