From: Jan Schneider Date: Mon, 29 Nov 2010 16:12:18 +0000 (+0100) Subject: Fix variable name. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4b1eaadd4e59bfddefa55f19ef9afe5e1d0ac4b0;p=horde.git Fix variable name. --- diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index 1598a31c0..717b4ef9b 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -434,7 +434,7 @@ class Horde_Registry if ($ob->set($id, $data, 86400)) { Horde::logMessage('Horde_Registry: stored ' . $key . ' with cache ID ' . $id, 'DEBUG'); } - } elseif ($id = $this->_getCacheId($name)) { + } elseif ($id = $this->_getCacheId($key)) { // Entry has been deleted. $ob->expire($id); }