aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/zot.php2
-rw-r--r--version.inc2
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