From ff49d828f4516eb6cb9a6e5fb3cb568cd4157ea0 Mon Sep 17 00:00:00 2001
From: Dominik Pfennig <dominik@suma-ev.de>
Date: Wed, 3 Aug 2016 09:09:11 +0200
Subject: [PATCH] Der Dublettenfilter sollte nun http[s]:// und www. ignorieren

---
 app/MetaGer.php | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/app/MetaGer.php b/app/MetaGer.php
index 30f421f9c..680c3115e 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -987,6 +987,13 @@ class MetaGer
     }
     public function addLink($link)
     {
+        if(strpos($link, "http://") === 0)
+            $link = substr($link, 7);
+        if(strpos($link, "https://") === 0)
+            $link = substr($link, 8);
+        if(strpos($link, "www.") === 0)
+            $link = substr($link, 4);
+        $link = trim($link, "/");
         $hash = md5($link);
         if(isset($this->addedLinks[$hash]))
         {
-- 
GitLab