Bug #22694 » 14455.patch
t3lib/cache/backend/class.t3lib_cache_backend_memcachedbackend.php (working copy) | ||
---|---|---|
// Update identifier-to-tag index
|
||
$existingTags = $this->findTagsByIdentifier($entryIdentifier);
|
||
if (array_search($entryIdentifier, $existingTags) === false) {
|
||
if (array_search($tag, $existingTags) === false) {
|
||
$this->memcache->set($this->identifierPrefix . 'ident_' . $entryIdentifier,
|
||
array_merge($existingTags, $tags));
|
||
}
|