From f542653230c30fa9f1bc7ba565079bf3feb9accb Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 23 Jan 2013 17:46:46 -0800 Subject: [PATCH] suppress duplicate comment notifications --- include/enotify.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/enotify.php b/include/enotify.php index 9c405c101b..d9f100831c 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -56,12 +56,13 @@ function notification($params) { $parent_id = $params['parent']; - // Check to see if there was already a tag notify for this post. + // Check to see if there was already a tag notify or comment notify for this post. // If so don't create a second notification $p = null; - $p = q("select id from notify where type = %d and link = '%s' and uid = %d limit 1", + $p = q("select id from notify where ( type = %d or type = %d ) and link = '%s' and uid = %d limit 1", intval(NOTIFY_TAGSELF), + intval(NOTIFY_COMMENT), dbesc($params['link']), intval($params['uid']) ); -- 2.39.5