aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/configureController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/configureController.php')
-rwxr-xr-xapp/controllers/configureController.php3
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 (),