diff options
-rwxr-xr-x | include/items.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index a0a698836..8df090e0b 100755 --- a/include/items.php +++ b/include/items.php @@ -3855,10 +3855,11 @@ function zot_feed($uid,$observer_xchan,$mindate) { if($r) { $parents_str = ids_to_querystr($r,'parent'); - + $sys_query = ((is_sys_channel($uid)) ? $sql_extra : ''); + $items = q("SELECT `item`.*, `item`.`id` AS `item_id` FROM `item` WHERE `item`.`item_restrict` = 0 - AND `item`.`parent` IN ( %s ) ", + AND `item`.`parent` IN ( %s ) $sys_query ", dbesc($parents_str) ); } @@ -3873,6 +3874,9 @@ function zot_feed($uid,$observer_xchan,$mindate) { else $items = array(); + + logger('zot_feed: number items: ' . count($items),LOGGER_DEBUG); + foreach($items as $item) $result[] = encode_item($item); |