Browse Source

GroupDependency::generateDependencyData typo fix

tags/2.0.0-alpha
callmez 11 years ago
parent
commit
a9b6dbdd5d
  1. 2
      framework/yii/caching/GroupDependency.php

2
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;
}

Loading…
Cancel
Save