Commit 3eff1d1c authored by guilhermeblanco's avatar guilhermeblanco

[2.0] Fixed issue with classmetadata cache that was saving the entire...

[2.0] Fixed issue with classmetadata cache that was saving the entire inheritance on the same cacheKey.
parent dc1f61c0
...@@ -150,7 +150,7 @@ class ClassMetadataFactory ...@@ -150,7 +150,7 @@ class ClassMetadataFactory
} else { } else {
foreach ($this->_loadMetadata($realClassName) as $loadedClassName) { foreach ($this->_loadMetadata($realClassName) as $loadedClassName) {
$this->_cacheDriver->save( $this->_cacheDriver->save(
"$loadedClassName\$CLASSMETADATA", $this->_loadedMetadata[$realClassName], null "$loadedClassName\$CLASSMETADATA", $this->_loadedMetadata[$loadedClassName], null
); );
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment