diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-21 13:33:05 -0800 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2017-12-22 20:25:16 +0100 |
commit | 7b77e05f3a5f117d752ab2cd4449ab59dbffb2cf (patch) | |
tree | 14f8288905b52e78f273d6b1941b15c9f7a363ab /include/items.php | |
parent | a284e1f9d821525b5aafb5767c27d73828521e90 (diff) | |
download | volse-hubzilla-7b77e05f3a5f117d752ab2cd4449ab59dbffb2cf.tar.gz volse-hubzilla-7b77e05f3a5f117d752ab2cd4449ab59dbffb2cf.tar.bz2 volse-hubzilla-7b77e05f3a5f117d752ab2cd4449ab59dbffb2cf.zip |
hubzilla-addons issue #74 - delayed posts not honoured for GNU-Social
There is a very high probability this will also fix hubzilla-addons issue #75
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 7948a7c22..722757f87 100755 --- a/include/items.php +++ b/include/items.php @@ -4139,7 +4139,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 "; + $sql_extra = " AND author_xchan = '" . $channel['channel_hash'] . "' and item_private = 0 $item_normal "; } if ($arr['datequery']) { |