diff options
| author | 2013-10-16 10:51:09 +0200 | |
|---|---|---|
| committer | 2013-10-16 10:51:09 +0200 | |
| commit | 46d9e0417afe30cfec2b930417be036330c094b6 (patch) | |
| tree | 0ffbb7f1efe220ba15f1448742c0aa47ef8bd043 /app/controllers/configureController.php | |
| parent | 864601651d6d8bf6dc6156e12ca554fdcac1343a (diff) | |
Fix issue #198: case sauter au voisin non lu marche plus
Le fait de décocher la case de l'option "sauter au prochain voisin non lu"
ne fonctionnait plus.
Diffstat (limited to 'app/controllers/configureController.php')
| -rwxr-xr-x | app/controllers/configureController.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
