]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
fix bug #2953732 and make corresponding test work.
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 17 Mar 2010 20:07:04 +0000 (20:07 +0000)
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 17 Mar 2010 20:07:04 +0000 (20:07 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@688 b3834d28-1941-0410-a4f8-b48e95affb8f

src/SemanticScuttle/Service/Bookmark.php

index 88a90559843541ba436e8fe0541ac267380beb9f..3cdec72da1405385a60a5aec93b7f4e2be7595d2 100644 (file)
@@ -178,7 +178,8 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
      */
     public function getBookmarkByAddress($address)
     {
-        $hash = md5($address);
+        $address = $this->normalize($address);
+        $hash    = md5($address);
         return $this->getBookmarkByHash($hash);
     }