diff options
| author | 2015-05-10 14:04:12 +0200 | |
|---|---|---|
| committer | 2015-05-10 14:04:12 +0200 | |
| commit | 0d0c6b7493161d350ca2eb1d4c45c0c70cfcbb92 (patch) | |
| tree | 5c3ac8ccdcd54dcd7a9d5815c9787d06dddb1348 /app/Controllers/configureController.php | |
| parent | 5f545dfda2b6700579b856c815e1914a2dd62553 (diff) | |
Moved updated/unread option from global to user
https://github.com/FreshRSS/FreshRSS/issues/798
Diffstat (limited to 'app/Controllers/configureController.php')
| -rwxr-xr-x | app/Controllers/configureController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index fc92aa0c2..248a3edcc 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -112,6 +112,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController { FreshRSS_Context::$user_conf->sticky_post = Minz_Request::param('sticky_post', false); FreshRSS_Context::$user_conf->reading_confirm = Minz_Request::param('reading_confirm', false); FreshRSS_Context::$user_conf->auto_remove_article = Minz_Request::param('auto_remove_article', false); + FreshRSS_Context::$user_conf->mark_updated_article_unread = Minz_Request::param('mark_updated_article_unread', false); FreshRSS_Context::$user_conf->sort_order = Minz_Request::param('sort_order', 'DESC'); FreshRSS_Context::$user_conf->mark_when = array( 'article' => Minz_Request::param('mark_open_article', false), |
