From 661e13e47dff90b7c3ad317619612d870365018b Mon Sep 17 00:00:00 2001 From: Karl Hasselbring <Karl Hasselbring> Date: Tue, 9 May 2017 09:33:34 +0200 Subject: [PATCH] =?UTF-8?q?Maps=20sind=20jetzt=20standardm=C3=A4=C3=9Fig?= =?UTF-8?q?=20ausgeschaltet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Controllers/StartpageController.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/Http/Controllers/StartpageController.php b/app/Http/Controllers/StartpageController.php index 0f36c6ea4..87610daed 100644 --- a/app/Http/Controllers/StartpageController.php +++ b/app/Http/Controllers/StartpageController.php @@ -45,14 +45,13 @@ class StartpageController extends Controller ->with('theme', $theme) ->with('autocomplete', $request->input('param_autocomplete', 'on')) ->with('foki', $this->loadFoki()) - ->with('focus', $request->input('focus', 'web')) ->with('lang', $request->input('param_lang', 'all')) ->with('resultCount', $request->input('param_resultCount', '20')) - ->with('time', $request->input('param_time', '1000')) - ->with('sprueche', $request->input('param_sprueche', 'off')) + ->with('time', $request->input('param_time', '1500')) + ->with('sprueche', $request->input('param_sprueche', 'on')) ->with('newtab', $request->input('param_newtab', 'on')) - ->with('maps', $maps = $request->input('param_maps', 'on')); + ->with('maps', $maps = $request->input('param_maps', 'off')); } public function loadPage($subpage) -- GitLab