From 1642f53bf4c557d16d2969e5786c22f0b2871dd4 Mon Sep 17 00:00:00 2001 From: jwage <jwage@625475ce-881a-0410-a577-b389adb331d8> Date: Fri, 23 Oct 2009 05:36:47 +0000 Subject: [PATCH] [2.0][DDC-48] Fixed issue with getNamespacedId() being called twice --- lib/Doctrine/Common/Cache/AbstractCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Common/Cache/AbstractCache.php b/lib/Doctrine/Common/Cache/AbstractCache.php index f761dda0b..961b69794 100644 --- a/lib/Doctrine/Common/Cache/AbstractCache.php +++ b/lib/Doctrine/Common/Cache/AbstractCache.php @@ -57,7 +57,7 @@ abstract class AbstractCache implements Cache public function fetch($id) { $id = $this->_getNamespacedId($id); - return $this->_doFetch($this->_getNamespacedId($id)); + return $this->_doFetch($id); } /**