]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #4512 from annando/tag-comment
authorHypolite Petovan <mrpetovan@gmail.com>
Tue, 27 Feb 2018 13:46:32 +0000 (08:46 -0500)
committerGitHub <noreply@github.com>
Tue, 27 Feb 2018 13:46:32 +0000 (08:46 -0500)
Following tags on the network page should now work for comments as well

mod/network.php

index 6373af8022c4d724031f0df6c81c29c259404317..2d9a829ce48124c4b1630fa2c30ee0c37e76d64e 100644 (file)
@@ -819,7 +819,7 @@ function networkThreadedView(App $a, $update = 0)
                        $top_limit = DateTimeFormat::utcNow();
                }
 
-               $items = dba::p("SELECT `item`.`uri`, `item`.`id` AS `item_id`, `item`.$ordering AS `order_date` FROM `item`
+               $items = dba::p("SELECT `item`.`parent-uri` AS `uri`, 0 AS `item_id`, `item`.$ordering AS `order_date` FROM `item`
                        STRAIGHT_JOIN (SELECT `oid` FROM `term` WHERE `term` IN
                                (SELECT SUBSTR(`term`, 2) FROM `search` WHERE `uid` = ? AND `term` LIKE '#%') AND `otype` = ? AND `type` = ? AND `uid` = 0) AS `term`
                        ON `item`.`id` = `term`.`oid`
@@ -860,7 +860,7 @@ function networkThreadedView(App $a, $update = 0)
                        if ($date_offset < $item['order_date']) {
                                $date_offset = $item['order_date'];
                        }
-                       if (!in_array($item['item_id'], $parents_arr)) {
+                       if (!in_array($item['item_id'], $parents_arr) && ($item['item_id'] > 0)) {
                                $parents_arr[] = $item['item_id'];
                        }
                }