diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-05 09:54:43 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-05 09:54:43 -0800 |
commit | 16254c14c8984f457b13c32d2b9bc0baedfde448 (patch) | |
tree | f3d501fc231425965f367d8185eb2a97568e6e70 | |
parent | 50185aafbb4b671ad04cff8dd736930d923c2ed0 (diff) |
Typo fix in the new default in-process cache; spewed notice warnings on deletion, breaking XHR responses.
-rw-r--r-- | lib/cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cache.php b/lib/cache.php index bac3499e5..85e8badc1 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -170,7 +170,7 @@ class Cache $success = false; if (Event::handle('StartCacheDelete', array(&$key, &$success))) { - if (array_key_exists($key, $this->_items[$key])) { + if (array_key_exists($key, $this->_items)) { unset($this->_items[$key]); } $success = true; |