]> git.mxchange.org Git - friendica.git/commitdiff
don't add notification details on new posts
authorfabrixxm <fabrix.xm@gmail.com>
Tue, 23 Aug 2011 12:02:04 +0000 (14:02 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Tue, 23 Aug 2011 12:02:04 +0000 (14:02 +0200)
mod/ping.php

index f9d7cd8a7a7db61f2d2f5c60b4ba17fbae22c37f..8a3d284af06acf01971c740b2989878645a7d445 100644 (file)
@@ -13,7 +13,7 @@ function ping_init(&$a) {
        $dislikes = array();
        $friends = array();
        
-       $r = q("SELECT `item`.`parent`, `item`.`verb`, `item`.`author-name`, 
+       $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, 
                        `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, 
                        `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` 
                        FROM `item` INNER JOIN `item` as `pitem` ON  `pitem`.`id`=`item`.`parent`
@@ -35,12 +35,12 @@ function ping_init(&$a) {
                                $friends[] = $it;
                                break;
                        default:
-                               $comments[] = $it;
+                               if ($it['parent']!=$it['id']) $comments[] = $it;
                }
        }
 
 
-       $r = q("SELECT `item`.`parent`, `item`.`verb`, `item`.`author-name`, 
+       $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, 
                        `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, 
                        `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` 
                        FROM `item` INNER JOIN `item` as `pitem` ON  `pitem`.`id`=`item`.`parent`
@@ -61,7 +61,7 @@ function ping_init(&$a) {
                                $friends[] = $it;
                                break;
                        default:
-                               $comments[] = $it;
+                               if ($it['parent']!=$it['id']) $comments[] = $it;
                }
        }