diff options
| author | 2015-03-04 08:40:00 +0100 | |
|---|---|---|
| committer | 2015-03-04 08:40:00 +0100 | |
| commit | 689af241116060be3c8ca28c386c7c3e1a06490c (patch) | |
| tree | 5fbc244f5e4712ca4c1509f44900200ce1c81156 | |
| parent | cdd653ce5305f043ee1db970c25303676c9f35c0 (diff) | |
| parent | f3f8d73dda3c9882f383e721eb3cc47be5a6c706 (diff) | |
Merge pull request #801 from aledeg/fix-api
Fix API to use the search object
| -rw-r--r-- | p/api/greader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/api/greader.php b/p/api/greader.php index ab1a02244..060aa45ee 100644 --- a/p/api/greader.php +++ b/p/api/greader.php @@ -371,7 +371,7 @@ function streamContents($path, $include_target, $start_time, $count, $order, $ex } $entryDAO = FreshRSS_Factory::createEntryDao(); - $entries = $entryDAO->listWhere($type, $include_target, $state, $order === 'o' ? 'ASC' : 'DESC', $count, $continuation, '', $start_time); + $entries = $entryDAO->listWhere($type, $include_target, $state, $order === 'o' ? 'ASC' : 'DESC', $count, $continuation, new FreshRSS_Search(''), $start_time); $items = array(); foreach ($entries as $entry) { |
