diff options
| author | 2013-08-18 02:19:05 +0200 | |
|---|---|---|
| committer | 2013-08-18 02:19:05 +0200 | |
| commit | 10e87035cae8d5f0d6e71d0b9247fa270707a300 (patch) | |
| tree | e5fcb003b148e8eb4f7057a7ee679aa55b999538 /app/controllers/configureController.php | |
| parent | ece62aca3e838cdc7e7d3a8c94d7e5f4265c5285 (diff) | |
Fix option lazyload
Il n'était plus possible de désactiver le lazyload, c'est désormais
corrigé
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 6b582fde6..71ab45fbe 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -145,7 +145,7 @@ class configureController extends ActionController { $mode = Request::param ('view_mode', 'normal'); $view = Request::param ('default_view', 'all'); $display = Request::param ('display_posts', 'no'); - $lazyload = Request::param ('lazyload', 'yes'); + $lazyload = Request::param ('lazyload', 'no'); $sort = Request::param ('sort_order', 'low_to_high'); $old = Request::param ('old_entries', 3); $mail = Request::param ('mail_login', false); |
