diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-03-18 19:26:09 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-03-18 19:26:09 +0000 |
commit | d249a8ad19514e0c386391ae37081445ee6c23c7 (patch) | |
tree | b1989754d340b1cdebbc4cf00303dc10ec4386ea /src | |
parent | 602ec95bbb91400b6ef2647df55e83e68f4223b5 (diff) | |
download | semanticscuttle-d249a8ad19514e0c386391ae37081445ee6c23c7.tar.gz semanticscuttle-d249a8ad19514e0c386391ae37081445ee6c23c7.tar.bz2 |
fix bad bug that was introduced due to performance optimizations
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@693 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src')
-rw-r--r-- | src/SemanticScuttle/Service/Bookmark.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SemanticScuttle/Service/Bookmark.php b/src/SemanticScuttle/Service/Bookmark.php index 2258625..364b1a0 100644 --- a/src/SemanticScuttle/Service/Bookmark.php +++ b/src/SemanticScuttle/Service/Bookmark.php @@ -380,7 +380,7 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService } $hashes = array(); - $sql = '(1'; + $sql = '(0'; foreach ($addresses as $key => $address) { $hash = $this->getHash($address); $hashes[$hash] = $address; |