From 9fe00506c6d1cf43724ddf0d9d7c63a325763186 Mon Sep 17 00:00:00 2001 From: Dominik Pfennig <dominik@suma-ev.de> Date: Wed, 14 Jun 2017 11:52:18 +0200 Subject: [PATCH] URL Parameter werden vond er Blacklist nun auch erfasst --- app/Models/Result.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Result.php b/app/Models/Result.php index e7ee28f92..f81607f6e 100644 --- a/app/Models/Result.php +++ b/app/Models/Result.php @@ -303,7 +303,7 @@ class Result public function getStrippedLink($link) { $match = $this->getUrlElements($link); - return $match['host'] . $match['path']; + return $match['host'] . $match['path'] . $match['query']; } /* Liest aus einem Link die Domain. -- GitLab