1
0
mirror of synced 2025-01-18 22:41:43 +03:00

[2.0][DDC-48] Fixed issue with getNamespacedId() being called twice

This commit is contained in:
jwage 2009-10-23 05:36:47 +00:00
parent da38026bc2
commit 1642f53bf4

View File

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