diff options
author | Christian Weiske <cweiske@cweiske.de> | 2013-03-21 17:57:48 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2013-03-21 17:57:48 +0100 |
commit | dfaf1d026accae515b9d7cb8593a6f157884fe07 (patch) | |
tree | 2c386469c6a775cbcf498d9081ef2938a2ab0295 /src | |
parent | 5c8833d5f50086e7a2362166f878c947697e4221 (diff) | |
download | semanticscuttle-dfaf1d026accae515b9d7cb8593a6f157884fe07.tar.gz semanticscuttle-dfaf1d026accae515b9d7cb8593a6f157884fe07.tar.bz2 |
Fix two broken tests
Diffstat (limited to 'src')
-rw-r--r-- | src/SemanticScuttle/Service/TagCache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SemanticScuttle/Service/TagCache.php b/src/SemanticScuttle/Service/TagCache.php index 64ec0cc..f8a28af 100644 --- a/src/SemanticScuttle/Service/TagCache.php +++ b/src/SemanticScuttle/Service/TagCache.php @@ -183,7 +183,7 @@ class SemanticScuttle_Service_TagCache extends SemanticScuttle_DbService $values = $this->_getSynonymValues($tag2, $uId); $this->removeSynonymGroup($tag2, $uId); foreach($values as $value) { - $this->addSynonym($tag1, $value['tag'], $uId); + $this->addSynonym($tag1, $value, $uId); } $this->addSynonym($tag1, $tag2, $uId); break; |