From 46d9e0417afe30cfec2b930417be036330c094b6 Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Wed, 16 Oct 2013 10:51:09 +0200 Subject: [PATCH] Fix issue #198: case sauter au voisin non lu marche plus MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le fait de décocher la case de l'option "sauter au prochain voisin non lu" ne fonctionnait plus. --- app/controllers/configureController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index 380adcd1d..a63ebe31d 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -156,7 +156,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'); + $onread_jump_next = Request::param ('onread_jump_next', 'no'); $lazyload = Request::param ('lazyload', 'no'); $sort = Request::param ('sort_order', 'low_to_high'); $old = Request::param ('old_entries', 3);