From 704676793d7cdfaba518fa0c3b4ec854151388e8 Mon Sep 17 00:00:00 2001
From: Karl <Karl Hasselbring>
Date: Thu, 16 Feb 2017 09:33:38 +0100
Subject: [PATCH] repaired merge-damages

---
 app/MetaGer.php                               | 13 +++----
 resources/views/index.blade.php               | 35 ++-----------------
 .../views/layouts/researchandtabs.blade.php   |  5 ---
 3 files changed, 7 insertions(+), 46 deletions(-)

diff --git a/app/MetaGer.php b/app/MetaGer.php
index 62bff7f95..f920a80ba 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -910,12 +910,7 @@ class MetaGer
         } else {
             $this->maps = false;
         }
-<<<<<<< HEAD
-        # Neuer tab
-        $this->newtab = $request->input('tab', 'on');
-=======
         $this->newtab = $request->input('newtab', 'on');
->>>>>>> development
         if ($this->newtab === "on") {
             $this->newtab = "_blank";
         } else {
@@ -923,10 +918,10 @@ class MetaGer
         }
         # Custom Search
         $this->canCustomSearch = $request->input('canCustomSearch', 'false');
-        if ($this->maps === "true") {
-            $this->maps = true;
+        if ($this->canCustomSearch === "true") {
+            $this->canCustomSearch = true;
         } else {
-            $this->maps = false;
+            $this->canCustomSearch = false;
         }
         # Theme
         $this->theme = preg_replace("/[^[:alnum:][:space:]]/u", '', $request->input('theme', 'default'));
@@ -1242,7 +1237,7 @@ class MetaGer
         }
     }
 
-# Generators
+    # Generators
 
     public function generateSearchLink($fokus, $results = true)
     {
diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php
index 4761282bd..d57ec392c 100644
--- a/resources/views/index.blade.php
+++ b/resources/views/index.blade.php
@@ -193,50 +193,21 @@
 						&lt;li &gt;&lt;a id="black" data-rgba="238,238,238,1" href="#"&gt;&lt;/a&gt;&lt;/li&gt;
 						&lt;li &gt;&lt;a id="blackHard" data-rgba="50,50,50,1" href="#"&gt;&lt;/a&gt;&lt;/li&gt;
 						&lt;/ul&gt;'>
-<<<<<<< HEAD
 						<span class="glyphicon glyphicon-tint"></span>
 					</button>
-=======
-							<span class="glyphicon glyphicon-tint"></span>
-						</button>
-					</div>
-					<input type="text" name="eingabe" required="" autofocus="" autocomplete="{{$autocomplete}}" class="form-control" placeholder="{{ trans('index.placeholder') }}">
-					<input type="hidden" name="encoding" value="utf8">
-					@if ($focus === 'angepasst') <input type="hidden" name="lang" value={{ $lang }} >
-						<input type="hidden" name="resultCount" value={{ $resultCount }} >
-						<input type="hidden" name="time" value={{ $time }} >
-						<input type="hidden" name="sprueche" value={{ $sprueche }} >
-						<input type="hidden" name="newtab" value={{ $newtab }} >
-						<input type="hidden" name="maps" value={{ $maps }} >
-						@foreach ($focusPages as $fp)
-							<input type="hidden" name={{ $fp }} value="on">
-						@endforeach
-						<input type="hidden" name="theme" value={{ $theme }}>
-					@elseif( !App::isLocale('de') )
-						<input type="hidden" name="lang" value="{{ App::getLocale() }}">
-					@else
-						<input type="hidden" name="lang" value="all">
-					@endif
-					<div class="input-group-addon">
-						<button type="submit">
-							<span class="glyphicon glyphicon-search"></span>
-						</button>
-					</div>
->>>>>>> development
 				</div>
 				<input type="text" name="eingabe" required="" autofocus="" autocomplete="{{$autocomplete}}" class="form-control" placeholder="{{ trans('index.placeholder') }}">
 				<input type="hidden" name="encoding" value="utf8">
-				@if ($focus === 'angepasst')
-					<input type="hidden" name="lang" value={{ $lang }} >
+				@if ($focus === 'angepasst') <input type="hidden" name="lang" value={{ $lang }} >
 					<input type="hidden" name="resultCount" value={{ $resultCount }} >
 					<input type="hidden" name="time" value={{ $time }} >
 					<input type="hidden" name="sprueche" value={{ $sprueche }} >
-					<input type="hidden" name="tab" value={{ $tab }} >
+					<input type="hidden" name="newtab" value={{ $newtab }} >
 					<input type="hidden" name="maps" value={{ $maps }} >
-					<input type="hidden" name="theme" value={{ $theme }}>
 					@foreach ($focusPages as $fp)
 						<input type="hidden" name={{ $fp }} value="on">
 					@endforeach
+					<input type="hidden" name="theme" value={{ $theme }}>
 				@elseif( !App::isLocale('de') )
 					<input type="hidden" name="lang" value="{{ App::getLocale() }}">
 				@else
diff --git a/resources/views/layouts/researchandtabs.blade.php b/resources/views/layouts/researchandtabs.blade.php
index b7a201d03..df2aee8c1 100644
--- a/resources/views/layouts/researchandtabs.blade.php
+++ b/resources/views/layouts/researchandtabs.blade.php
@@ -109,13 +109,8 @@
 					</a>
 				</li>
 			@else
-<<<<<<< HEAD
-				<li data-loaded="0" id="produktsucheTabSelector" class="tab-selector" role="presentation">
-					<a aria-controls="produktsuche" data-href="{{ $metager->generateSearchLink('produktsuche') }}" href="{{ $metager->generateSearchLink('produktsuche') }}">
-=======
 				<li data-loaded="0" id="produktsucheTabSelector" class="tab-selector" role="presentation" >
 					<a aria-controls="produktsuche" data-href="{!! $metager->generateSearchLink('produktsuche') !!}" href="{!! $metager->generateSearchLink('produktsuche') !!}">
->>>>>>> development
 						<span class='glyphicon glyphicon-shopping-cart'></span>
 						<span class="hidden-xs">{{ trans('index.foki.produkte') }}</span>
 					</a>
-- 
GitLab