Skip to content
Snippets Groups Projects
Commit 61afce2c authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Der Tabschalter wird auf der Startseite wieder richtig generiert.

Auf der Ergebnisseite wird er nun auch richtig ausgewertet
parent f14358c7
No related branches found
No related tags found
2 merge requests!129Bugfix,!128Bugfix
...@@ -47,7 +47,7 @@ class StartpageController extends Controller ...@@ -47,7 +47,7 @@ class StartpageController extends Controller
->with('resultCount', $request->input('param_resultCount', '20')) ->with('resultCount', $request->input('param_resultCount', '20'))
->with('time', $request->input('param_time', '1000')) ->with('time', $request->input('param_time', '1000'))
->with('sprueche', $request->input('param_sprueche', 'off')) ->with('sprueche', $request->input('param_sprueche', 'off'))
->with('tab', $request->input('param_sprueche', 'off')) ->with('tab', $request->input('param_tab', 'off'))
->with('focusPages', $focusPages) ->with('focusPages', $focusPages)
->with('browser', $browser) ->with('browser', $browser)
->with('navbarFocus', 'suche'); ->with('navbarFocus', 'suche');
......
...@@ -577,7 +577,7 @@ class MetaGer ...@@ -577,7 +577,7 @@ class MetaGer
} }
if( $request->has('tab')) if( $request->has('tab'))
{ {
if($request->input('tab') === "1") if($request->input('tab') === "off")
{ {
$this->tab = "_blank"; $this->tab = "_blank";
}else }else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment