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); } /**