diff options
author | xue <> | 2008-01-10 04:59:06 +0000 |
---|---|---|
committer | xue <> | 2008-01-10 04:59:06 +0000 |
commit | d2e5d2ff88b29ef966b8e27299c1e30ba48eb623 (patch) | |
tree | 3e63befe9a6e4c5002e193c44597b293f46808c4 /framework/Caching/TCache.php | |
parent | 3819e887d9f485ac0917a9d415961e147581c280 (diff) |
fixed a typo.
Diffstat (limited to 'framework/Caching/TCache.php')
-rw-r--r-- | framework/Caching/TCache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Caching/TCache.php b/framework/Caching/TCache.php index 5d0b11a6..e528e5ab 100644 --- a/framework/Caching/TCache.php +++ b/framework/Caching/TCache.php @@ -592,7 +592,7 @@ class TGlobalStateCacheDependency extends TCacheDependency */
public function getHasChanged()
{
- return $this->_stateValue!==Prado::getApplication()->getGlobalState($value);
+ return $this->_stateValue!==Prado::getApplication()->getGlobalState($this->_stateName);
}
}
|