diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-03-17 20:07:04 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-03-17 20:07:04 +0000 |
commit | 5a93096431eebb4cb458351ce5f8d1b836328ca0 (patch) | |
tree | 7208cb2b29ee1ad81bca834636f0609b09a2fad4 /src/SemanticScuttle/Service | |
parent | f9e0714350cbb8efdfeac632fe2211c6c59bdbae (diff) | |
download | semanticscuttle-5a93096431eebb4cb458351ce5f8d1b836328ca0.tar.gz semanticscuttle-5a93096431eebb4cb458351ce5f8d1b836328ca0.tar.bz2 |
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
Diffstat (limited to 'src/SemanticScuttle/Service')
-rw-r--r-- | src/SemanticScuttle/Service/Bookmark.php | 3 |
1 files changed, 2 insertions, 1 deletions
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); } |