Subscribed tags are now based on the tags as well
This commit is contained in:
parent
3b2ae5c4a9
commit
1f64e672ba
1 changed files with 4 additions and 5 deletions
|
@ -788,14 +788,13 @@ function networkThreadedView(App $a, $update, $parent)
|
||||||
}
|
}
|
||||||
|
|
||||||
$items = DBA::p("SELECT `item`.`parent-uri` AS `uri`, 0 AS `item_id`, `item`.$ordering AS `order_date`, `author`.`url` AS `author-link` FROM `item`
|
$items = DBA::p("SELECT `item`.`parent-uri` AS `uri`, 0 AS `item_id`, `item`.$ordering AS `order_date`, `author`.`url` AS `author-link` FROM `item`
|
||||||
STRAIGHT_JOIN (SELECT `oid` FROM `term` WHERE `term` IN
|
STRAIGHT_JOIN (SELECT `uri-id` FROM `tag-search-view` WHERE `name` IN
|
||||||
(SELECT SUBSTR(`term`, 2) FROM `search` WHERE `uid` = ? AND `term` LIKE '#%') AND `otype` = ? AND `type` = ? AND `uid` = 0) AS `term`
|
(SELECT SUBSTR(`term`, 2) FROM `search` WHERE `uid` = ? AND `term` LIKE '#%') AND `uid` = 0) AS `tag-search`
|
||||||
ON `item`.`id` = `term`.`oid`
|
ON `item`.`uri-id` = `tag-search`.`uri-id`
|
||||||
STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `item`.`author-id`
|
STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `item`.`author-id`
|
||||||
WHERE `item`.`uid` = 0 AND `item`.$ordering < ? AND `item`.$ordering > ? AND `item`.`gravity` = ?
|
WHERE `item`.`uid` = 0 AND `item`.$ordering < ? AND `item`.$ordering > ? AND `item`.`gravity` = ?
|
||||||
AND NOT `author`.`hidden` AND NOT `author`.`blocked`" . $sql_tag_nets,
|
AND NOT `author`.`hidden` AND NOT `author`.`blocked`" . $sql_tag_nets,
|
||||||
local_user(), Term::OBJECT_TYPE_POST, Tag::HASHTAG,
|
local_user(), $top_limit, $bottom_limit, GRAVITY_PARENT);
|
||||||
$top_limit, $bottom_limit, GRAVITY_PARENT);
|
|
||||||
|
|
||||||
$data = DBA::toArray($items);
|
$data = DBA::toArray($items);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue