diff options
| author | 2014-04-13 07:28:41 -0400 | |
|---|---|---|
| committer | 2014-04-13 07:28:41 -0400 | |
| commit | 86066b1659e33eb5fdfbcae5fb7f0bd93604d442 (patch) | |
| tree | 9df9b09b6beb785b9f126ac69ec4b0aa01e01f9c /app/views | |
| parent | d25afa9def1b02b7989b12c861e33da5c90ccba1 (diff) | |
Add a new status for 'ALL'
I made the conversion in every file I can think of.
It should not have any reference to the string 'all' for the state context
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/reading.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/configure/reading.phtml b/app/views/configure/reading.phtml index b778a4d22..b277397b1 100644 --- a/app/views/configure/reading.phtml +++ b/app/views/configure/reading.phtml @@ -32,7 +32,7 @@ <option value="global"<?php echo $this->conf->view_mode === 'global' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('global_view'); ?></option> </select> <label class="radio" for="radio_all"> - <input type="radio" name="default_view" id="radio_all" value="all"<?php echo $this->conf->default_view === 'all' ? ' checked="checked"' : ''; ?> /> + <input type="radio" name="default_view" id="radio_all" value="<?php echo FreshRSS_Configuration::STATE_ALL; ?>"<?php echo $this->conf->default_view === FreshRSS_Configuration::STATE_ALL ? ' checked="checked"' : ''; ?> /> <?php echo Minz_Translate::t ('show_all_articles'); ?> </label> <label class="radio" for="radio_not_read"> |
