Skip to content
This repository has been archived by the owner on Jan 6, 2020. It is now read-only.

Commit

Permalink
Add another parameter "type"
Browse files Browse the repository at this point in the history
Now you can choose a tag and a type ("starred" or "unread") for an individual feed
  • Loading branch information
Thomas--F committed Apr 20, 2013
1 parent 436fb5b commit d3db5e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions controllers/Rss.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public function rss() {
$options['items'] = \F3::get('rss_max_items');
if(\F3::get('PARAMS["tag"]')!=null)
$options['tag'] = \F3::get('PARAMS["tag"]');
if(\F3::get('PARAMS["type"]')!=null)
$options['type'] = \F3::get('PARAMS["type"]');


// get items
$newestEntryDate = false;
Expand Down

0 comments on commit d3db5e9

Please sign in to comment.