aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/configureController.php
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2014-07-07 19:21:57 -0400
committerGravatar Alexis Degrugillier <github@ainw.org> 2014-07-07 19:34:47 -0400
commit21d8c03ac969d93b9a0d29ee5cb8cd2f5630bdb8 (patch)
tree3722c027e5d108a880e811d882c0afcf488aec1d /app/Controllers/configureController.php
parent92f1d6d6581061fe81bdd44f5c82086ea03dd2fb (diff)
Add a configuration parameter
Add a parameter to choose wether or not the user want to display a confirmation dialog when clicking on "mark all as read" actions.
Diffstat (limited to 'app/Controllers/configureController.php')
-rwxr-xr-xapp/Controllers/configureController.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php
index f016e1fbf..9c143508e 100755
--- a/app/Controllers/configureController.php
+++ b/app/Controllers/configureController.php
@@ -185,8 +185,9 @@ class FreshRSS_configure_Controller extends Minz_ActionController {
$this->view->conf->_auto_load_more(Minz_Request::param('auto_load_more', false));
$this->view->conf->_display_posts(Minz_Request::param('display_posts', false));
$this->view->conf->_onread_jump_next(Minz_Request::param('onread_jump_next', false));
- $this->view->conf->_lazyload(Minz_Request::param('lazyload', false));
- $this->view->conf->_sticky_post(Minz_Request::param('sticky_post', false));
+ $this->view->conf->_lazyload (Minz_Request::param('lazyload', false));
+ $this->view->conf->_sticky_post (Minz_Request::param('sticky_post', false));
+ $this->view->conf->_reading_confirm (Minz_Request::param('reading_confirm', false));
$this->view->conf->_sort_order(Minz_Request::param('sort_order', 'DESC'));
$this->view->conf->_mark_when(array(
'article' => Minz_Request::param('mark_open_article', false),