From 563a090591244af94f4479e487a340fd55bf33c5 Mon Sep 17 00:00:00 2001
From: Karl Hasselbring <Karl Hasselbring>
Date: Fri, 6 Jul 2018 10:53:13 +0200
Subject: [PATCH] Suchfokus wird jetzt beibehalten

---
 app/MetaGer.php                           | 3 ++-
 resources/views/parts/searchbar.blade.php | 3 +++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/app/MetaGer.php b/app/MetaGer.php
index 8dc7d9a92..0a509284e 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -198,7 +198,8 @@ class MetaGer
                         ->with('metager', $this)
                         ->with('browser', (new Agent())->browser())
                         ->with('quicktips', $quicktipResults)
-                        ->with('resultcount', count($this->results));
+                        ->with('resultcount', count($this->results))
+                        ->with('focus', $this->fokus);
                     break;
             }
         }
diff --git a/resources/views/parts/searchbar.blade.php b/resources/views/parts/searchbar.blade.php
index 55fbf7c68..b7954e958 100644
--- a/resources/views/parts/searchbar.blade.php
+++ b/resources/views/parts/searchbar.blade.php
@@ -49,6 +49,9 @@
 						<input type="hidden" name={{ $fp }} value="on">
 					@endforeach
 				@endif
+				@if (isset($focus) && !empty($focus))
+					<input type="hidden" name="focus" value={{ $focus }}>
+				@endif
 				@if (isset($theme))
 					<input type="hidden" name="theme" value={{ $theme }}>
 					@endif
-- 
GitLab