diff options
| author | 2013-09-14 18:13:21 +0200 | |
|---|---|---|
| committer | 2013-09-14 18:13:21 +0200 | |
| commit | 6967de0e64b0ffa302e46da98db2c999f3a0a6df (patch) | |
| tree | 6f5ac2cb20e45ac1c6aa9cfe5faf4f6240822b63 /app/controllers/configureController.php | |
| parent | cdae47efae646759571c71202821de224fbe896d (diff) | |
| parent | 6d09878880e1cc94cdfc11974f734c808c33ec95 (diff) | |
Merge branch 'onread_jump_next' of https://github.com/Alkarex/FreshRSS into Alkarex-onread_jump_next
Diffstat (limited to 'app/controllers/configureController.php')
| -rwxr-xr-x | app/controllers/configureController.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index a31f5582e..c1e79d73e 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -158,6 +158,7 @@ class configureController extends ActionController { $view = Request::param ('default_view', 'all'); $auto_load_more = Request::param ('auto_load_more', 'no'); $display = Request::param ('display_posts', 'no'); + $onread_jump_next = Request::param ('onread_jump_next', 'yes'); $lazyload = Request::param ('lazyload', 'no'); $sort = Request::param ('sort_order', 'low_to_high'); $old = Request::param ('old_entries', 3); @@ -176,6 +177,7 @@ class configureController extends ActionController { $this->view->conf->_defaultView ($view); $this->view->conf->_autoLoadMore ($auto_load_more); $this->view->conf->_displayPosts ($display); + $this->view->conf->_onread_jump_next ($onread_jump_next); $this->view->conf->_lazyload ($lazyload); $this->view->conf->_sortOrder ($sort); $this->view->conf->_oldEntries ($old); @@ -197,6 +199,7 @@ class configureController extends ActionController { 'default_view' => $this->view->conf->defaultView (), 'auto_load_more' => $this->view->conf->autoLoadMore (), 'display_posts' => $this->view->conf->displayPosts (), + 'onread_jump_next' => $this->view->conf->onread_jump_next (), 'lazyload' => $this->view->conf->lazyload (), 'sort_order' => $this->view->conf->sortOrder (), 'old_entries' => $this->view->conf->oldEntries (), |
