aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-03-14 09:01:12 +0000
committerMario <mario@mariovavti.com>2021-03-14 09:01:12 +0000
commitb6d30f67345f37dae8dfffd96b065e6139364bcd (patch)
tree86913bbe9407a8042eb3c3ee2ada686f0af700a8 /include
parent22d769ecae17c9d5d36232c543b48b0a155ca502 (diff)
downloadvolse-hubzilla-b6d30f67345f37dae8dfffd96b065e6139364bcd.tar.gz
volse-hubzilla-b6d30f67345f37dae8dfffd96b065e6139364bcd.tar.bz2
volse-hubzilla-b6d30f67345f37dae8dfffd96b065e6139364bcd.zip
mod subthread issue continued
Diffstat (limited to 'include')
-rw-r--r--include/items.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php
index 26d009b55..3a59aaedb 100644
--- a/include/items.php
+++ b/include/items.php
@@ -4510,6 +4510,13 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C
$item_uids = " item.uid = " . intval($uid) . " ";
}
+ if (! (isset($arr['include_follow']) && intval($arr['include_follow']))) {
+ $sql_options .= sprintf(" and not verb in ('%s', '%s') ",
+ dbesc(ACTIVITY_FOLLOW),
+ dbesc(ACTIVITY_UNFOLLOW)
+ );
+ }
+
if($arr['star'])
$sql_options .= " and item_starred = 1 ";
@@ -4577,7 +4584,7 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C
}
if($channel && intval($arr['compat']) === 1) {
- $sql_extra = " AND author_xchan = '" . $channel['channel_hash'] . "' and item_private = 0 $item_normal ";
+ $sql_extra = " AND author_xchan = '" . $channel['channel_hash'] . "' and item_private = 0 $sql_options $item_normal ";
}
if ($arr['datequery']) {
@@ -4682,7 +4689,6 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C
);
require_once('include/items.php');
-
xchan_query($items);
$items = fetch_post_tags($items,true);