diff options
| author | 2014-11-16 18:10:55 +0100 | |
|---|---|---|
| committer | 2014-11-16 18:10:55 +0100 | |
| commit | 2c50ed7dc1c11571e3af0ee163e414cc321be2ca (patch) | |
| tree | 93005d06594a95a28f5fcf1a2c55cf2d7bd974d2 /app/Controllers/configureController.php | |
| parent | 4b374ce991b28d179afaf3e4a02a90cb82affa08 (diff) | |
| parent | 960f86ba20fdf7320c957141a9983d17c7e521fa (diff) | |
Merge pull request #694 from FreshRSS/hide-article
Add a feature to hide articles when they are read
Diffstat (limited to 'app/Controllers/configureController.php')
| -rwxr-xr-x | app/Controllers/configureController.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index f8d9b47c3..561544578 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -89,6 +89,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController { * - image lazy loading * - stick open articles to the top * - display a confirmation when reading all articles + * - auto remove article after reading * - article order (default: DESC) * - mark articles as read when: * - displayed @@ -110,6 +111,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController { FreshRSS_Context::$conf->_lazyload(Minz_Request::param('lazyload', false)); FreshRSS_Context::$conf->_sticky_post(Minz_Request::param('sticky_post', false)); FreshRSS_Context::$conf->_reading_confirm(Minz_Request::param('reading_confirm', false)); + FreshRSS_Context::$conf->_auto_remove_article(Minz_Request::param('auto_remove_article', false)); FreshRSS_Context::$conf->_sort_order(Minz_Request::param('sort_order', 'DESC')); FreshRSS_Context::$conf->_mark_when(array( 'article' => Minz_Request::param('mark_open_article', false), |
