diff --git a/app/MetaGer.php b/app/MetaGer.php
index 8a76b4387ea3d6a369825f2b26c1b121a1cd31a8..2c9d197e1f2346036a79f833d83210760f1dbdb6 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -29,6 +29,7 @@ class MetaGer
 	protected $hostBlacklist = [];
 	protected $domainBlacklist = [];
 	protected $stopWords = [];
+    protected $phrases = [];
 	protected $engines = [];
 	protected $results = [];
     protected $ads = [];
@@ -696,9 +697,19 @@ class MetaGer
 		}
 
 		# Meldung über eine Phrasensuche
-		if(preg_match("/\"(.+)\"/si", $this->q, $match)){
-			$this->warnings[] = "Sie führen eine Phrasensuche durch: \"" . $match[1] . "\"";
+        $p = "";
+        $tmp = $this->q;
+		while(preg_match("/(.*)\"(.+)\"(.*)/si", $tmp, $match)){
+            $tmp = $match[1] . $match[3];
+            $this->phrases[] = strtolower($match[2]);
 		}
+        foreach($this->phrases as $phrase)
+        {
+            $p .= "\"$phrase\", ";
+        }
+        $p = rtrim($p, ", ");
+        if(sizeof($this->phrases) > 0)
+            $this->warnings[] = "Sie führen eine Phrasensuche durch: $p";
 	}
 
     public function getFokus ()
@@ -750,6 +761,11 @@ class MetaGer
         return $this->category;
     }
 
+    public function getPhrases ()
+    {
+        return $this->phrases;
+    }
+
     public function getSumaFile ()
     {
         return $this->sumaFile;
diff --git a/app/Models/Result.php b/app/Models/Result.php
index 3845196e91e68f1cac0752bafcb7da78a1c1fea4..275a54889578f78145e3d4a4b18b87ae8fc3f54c 100644
--- a/app/Models/Result.php
+++ b/app/Models/Result.php
@@ -180,6 +180,14 @@ class Result
 			}
 		}
 
+		# Die Strinsuche:
+		$text = strtolower($this->titel) . " " . strtolower($this->descr);
+		foreach($metager->getPhrases() as $phrase)
+		{
+			if(strpos($text, $phrase) === FALSE)
+				return false;
+		}
+
 		# Abschließend noch 2 Überprüfungen. Einmal den Host filter, der Sicherstellt, dass von jedem Host maximal 3 Links angezeigt werden
 		# und dann noch den Dublettefilter, der sicher stellt, dass wir nach Möglichkeit keinen Link doppelt in der Ergebnisliste haben
 		# Diese Überprüfung führen wir unter bestimmten Bedingungen nicht durch: