aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/configureController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-07-08 14:14:02 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-07-08 14:14:02 +0200
commit0f842c1aea74792d9b6f7e41e374c5aa0ec745fb (patch)
treed7a59dfff2b6c11678ee3e0216e1d71f18cbeca5 /app/Controllers/configureController.php
parent436f9a432b5636c6425c689065090eb7c33e37b5 (diff)
SQL: removed superfluous transactions to avoid some dead locks
Diffstat (limited to 'app/Controllers/configureController.php')
-rwxr-xr-xapp/Controllers/configureController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php
index 9c143508e..ed8cfdb15 100755
--- a/app/Controllers/configureController.php
+++ b/app/Controllers/configureController.php
@@ -185,9 +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->_reading_confirm (Minz_Request::param('reading_confirm', 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),