summaryrefslogtreecommitdiffstats
path: root/templates/part.items.header.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.items.header.php')
-rw-r--r--templates/part.items.header.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/part.items.header.php b/templates/part.items.header.php
index 5fdec1d46..68e0d9234 100644
--- a/templates/part.items.header.php
+++ b/templates/part.items.header.php
@@ -8,6 +8,9 @@ if(isset($_['feedid'])){
$feedTitle = '';
}
+// FIXME: get this setting from the database
+$showOnlyUnread = true;
+
?>
<div class="feed_controls">
@@ -18,8 +21,8 @@ if(isset($_['feedid'])){
<div class="controls">
<input type="button" value="<?php echo $l->t('Mark all as read'); ?>" id="mark_all_as_read" />
<select id="feed_filter">
- <option value="all"><?php echo $l->t('Show read/unread articles'); ?></option>
- <option value="newest"><?php echo $l->t('Show only unread articles'); ?></option>
+ <option value="unread" <?php if($showOnlyUnread){ echo 'selected="selected"'; }; ?>><?php echo $l->t('Show only unread articles'); ?></option>
+ <option value="all" <?php if(!$showOnlyUnread){ echo 'selected="selected"'; }; ?>><?php echo $l->t('Show read/unread articles'); ?></option>
</select>
</div>
</div> \ No newline at end of file