From: cweiske Date: Wed, 17 Mar 2010 20:07:04 +0000 (+0000) Subject: fix bug #2953732 and make corresponding test work. X-Git-Tag: v0.97~25 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5a93096431eebb4cb458351ce5f8d1b836328ca0;p=semanticscuttle.git fix bug #2953732 and make corresponding test work. git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@688 b3834d28-1941-0410-a4f8-b48e95affb8f --- diff --git a/src/SemanticScuttle/Service/Bookmark.php b/src/SemanticScuttle/Service/Bookmark.php index 88a9055..3cdec72 100644 --- a/src/SemanticScuttle/Service/Bookmark.php +++ b/src/SemanticScuttle/Service/Bookmark.php @@ -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); }