diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-03 17:32:48 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-03 17:32:48 -0700 |
commit | 8b17a6ddd1c60f7f897e2a6a2632397629cac250 (patch) | |
tree | fd98e586495e92c4b0d9d829531c422fb38fe05f | |
parent | a7eae1031c8aa6a3a2ab202b2ba31fb6fade4bcd (diff) | |
download | volse-hubzilla-8b17a6ddd1c60f7f897e2a6a2632397629cac250.tar.gz volse-hubzilla-8b17a6ddd1c60f7f897e2a6a2632397629cac250.tar.bz2 volse-hubzilla-8b17a6ddd1c60f7f897e2a6a2632397629cac250.zip |
don't send purge_all notification to self.
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index ebc9d83a5..c0997138e 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -238,7 +238,7 @@ class Notifier { $channel = $s[0]; $uid = $item_id; $recipients = array(); - $r = q("select abook_xchan from abook where abook_channel = %d", + $r = q("select abook_xchan from abook where abook_channel = %d and abook_self = 0", intval($item_id) ); if($r) { |