diff options
author | zotlabs <mike@macgirvin.com> | 2018-01-02 14:04:43 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-01-02 14:04:43 -0800 |
commit | ada578e7e3fc86970be6d1f242f785dae14f5e30 (patch) | |
tree | 8df133a2ee4eab3230d73859d8741fe333db6f0d /include/items.php | |
parent | 3bd7133ba32d758df935a566c45515a530b35538 (diff) | |
download | volse-hubzilla-ada578e7e3fc86970be6d1f242f785dae14f5e30.tar.gz volse-hubzilla-ada578e7e3fc86970be6d1f242f785dae14f5e30.tar.bz2 volse-hubzilla-ada578e7e3fc86970be6d1f242f785dae14f5e30.zip |
issues with feed parameters
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/items.php b/include/items.php index 722757f87..d0b9cffc9 100755 --- a/include/items.php +++ b/include/items.php @@ -4063,8 +4063,9 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C $item_uids = ' true '; $item_normal = item_normal(); - - if ($arr['uid']) $uid= $arr['uid']; + if($arr['uid']) { + $uid = $arr['uid']; + } if($channel) { $uid = $channel['channel_id']; @@ -4226,7 +4227,7 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C $items = q("SELECT item.*, item.id AS item_id FROM item WHERE $item_uids $item_restrict $simple_update - $sql_extra $sql_nets + $sql_extra $sql_nets $sql_extra3 ORDER BY item.received DESC $pager_sql" ); |