From a9b6dbdd5d815780f3908b8e31042ff70294ad56 Mon Sep 17 00:00:00 2001 From: callmez Date: Sat, 17 Aug 2013 00:13:07 +0800 Subject: [PATCH] GroupDependency::generateDependencyData typo fix --- framework/yii/caching/GroupDependency.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/yii/caching/GroupDependency.php b/framework/yii/caching/GroupDependency.php index af07d8a..d63cee4 100644 --- a/framework/yii/caching/GroupDependency.php +++ b/framework/yii/caching/GroupDependency.php @@ -44,7 +44,7 @@ class GroupDependency extends Dependency { $version = $cache->get(array(__CLASS__, $this->group)); if ($version === false) { - $version = $this->invalidate($cache, array(__CLASS__, $this->group)); + $version = $this->invalidate($cache, $this->group); } return $version; }