diff --git a/app/MetaGer.php b/app/MetaGer.php
index 8d4d60d82e8b20ece217b00ed79cb8751a245a71..46b98c89a8cdf4a8e01b63fd5760330d1507f8f9 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -330,7 +330,17 @@ class MetaGer
     public function doBotProtection($bot)
     {
         $hash = md5(date('YmdHi'));
-        if ((preg_match("/^\d+$/s", $this->getEingabe()) || strpos($this->request->input('focus'), "%3bamp") !== FALSE ) && $bot !== $hash) {
+
+        $shouldCheck = false;
+
+        foreach ($this->request->all() as $key => $value) {
+            if (strpos($key, "amp;") !== false) {
+                $shouldCheck = true;
+                break;
+            }
+        }
+
+        if ((preg_match("/^\d+$/s", $this->getEingabe()) || $shouldCheck) && $bot !== $hash) {
             return true;
         } else {
             return false;