From a26d1794fea354c9c90570c6cdbdceb733d47e13 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 10 Feb 2016 23:00:40 -0800 Subject: feed dates weren't being honoured. When that was fixed they turned out to be reversed. --- include/items.php | 6 +++--- mod/feed.php | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/items.php b/include/items.php index 7fed486a6..295bdb899 100755 --- a/include/items.php +++ b/include/items.php @@ -593,8 +593,8 @@ function get_feed_for($channel, $observer_hash, $params) { } $items = items_fetch(array( 'wall' => '1', - 'datequery' => $params['begin'], - 'datequery2' => $params['end'], + 'datequery' => $params['end'], + 'datequery2' => $params['begin'], 'start' => $params['start'], // FIXME 'records' => $params['records'], // FIXME 'direction' => $params['direction'], // FIXME @@ -4915,7 +4915,7 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C if(! array_key_exists('nouveau',$arr)) { $sql_extra2 = " AND item.parent = item.id "; - $sql_extra3 = ''; +// $sql_extra3 = ''; } if($arr['search']) { diff --git a/mod/feed.php b/mod/feed.php index eb72af9cf..087d3f827 100644 --- a/mod/feed.php +++ b/mod/feed.php @@ -31,7 +31,9 @@ function feed_init(&$a) { killme(); logger('mod_feed: public feed request from ' . $_SERVER['REMOTE_ADDR'] . ' for ' . $channel['channel_address']); + echo get_public_feed($channel,$params); + killme(); } -- cgit v1.2.3