Fix duplication of key group version in third-party modules

This commit is contained in:
Kijin Sung 2016-04-18 20:55:41 +09:00
parent 26c5a18a5b
commit ba9adb2f6e
2 changed files with 3 additions and 4 deletions

View file

@ -148,7 +148,7 @@ class CacheHandler extends Handler
*/
public function getGroupKey($keyGroupName, $key)
{
return Rhymix\Framework\Cache::getRealKey($keyGroupName . ':' . $key, false);
return $keyGroupName . ':' . $key;
}
/**