]> git.mxchange.org Git - friendica.git/commitdiff
suppress duplicate comment notifications
authorfriendica <info@friendica.com>
Thu, 24 Jan 2013 01:46:46 +0000 (17:46 -0800)
committerfriendica <info@friendica.com>
Thu, 24 Jan 2013 01:46:46 +0000 (17:46 -0800)
include/enotify.php

index 9c405c101b91623096045102fd2a332605cacbf0..d9f100831c66c77a5254b651c261cd06337ecc9d 100644 (file)
@@ -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'])
                );