diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-21 13:33:05 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-21 13:34:59 -0800 |
commit | c087d1e18b32f62d126cb01accbdeff21f5c1107 (patch) | |
tree | ecedfb2e07ae41092e9eeeff11f524d80f7b5ac5 /include/items.php | |
parent | ad487ec9f7a76280f3976843732eed7c2c40cbf0 (diff) | |
download | volse-hubzilla-c087d1e18b32f62d126cb01accbdeff21f5c1107.tar.gz volse-hubzilla-c087d1e18b32f62d126cb01accbdeff21f5c1107.tar.bz2 volse-hubzilla-c087d1e18b32f62d126cb01accbdeff21f5c1107.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']) { |