Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x

This commit is contained in:
Sarven Capadisli 2010-01-05 17:55:57 +00:00
commit 99c191912d
1 changed files with 1 additions and 1 deletions

View File

@ -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;