1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0][DDC-384] Fixed getReference problem with aliases.

This commit is contained in:
romanb 2010-03-04 12:45:41 +00:00
parent 0af8b66599
commit 715da59ded

View file

@ -315,7 +315,7 @@ class EntityManager
if ( ! is_array($identifier)) { if ( ! is_array($identifier)) {
$identifier = array($class->identifier[0] => $identifier); $identifier = array($class->identifier[0] => $identifier);
} }
$entity = $this->_proxyFactory->getProxy($entityName, $identifier); $entity = $this->_proxyFactory->getProxy($class->name, $identifier);
$this->_unitOfWork->registerManaged($entity, $identifier, array()); $this->_unitOfWork->registerManaged($entity, $identifier, array());
return $entity; return $entity;