From 97806544bcd7ee3831ffc515062afe0812828b76 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Tue, 23 Aug 2011 14:02:04 +0200 Subject: [PATCH] don't add notification details on new posts --- mod/ping.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index f9d7cd8a7a..8a3d284af0 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -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; } }