Removed possible collision in composite cache key #20

git-svn-id: svn+ssh://code.netmonsters.ru/svn/majestic/branches/evo@144 4cb57b5f-5bbd-dd11-951b-001d605cbbc5
This commit is contained in:
aterekhov
2010-04-27 21:20:04 +00:00
parent 6e0f302249
commit 62fc5a0a49

2
cache/CacheKey.php vendored
View File

@ -30,7 +30,7 @@ class CacheKey
}
$this->cache = $cacheable->getCache();
$this->expire = $cacheable->getKeyExpire($this->key);
$this->params = (is_array($params)) ? implode('', $params) : $params;
$this->params = (is_array($params)) ? implode('|', $params) : $params;
}
protected function getCacheKey()