summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2010-03-17 20:07:04 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2010-03-17 20:07:04 +0000
commit5a93096431eebb4cb458351ce5f8d1b836328ca0 (patch)
tree7208cb2b29ee1ad81bca834636f0609b09a2fad4 /src
parentf9e0714350cbb8efdfeac632fe2211c6c59bdbae (diff)
downloadsemanticscuttle-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')
-rw-r--r--src/SemanticScuttle/Service/Bookmark.php3
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);
}