From 56279938276e0449419988cbb60d54c9897962d6 Mon Sep 17 00:00:00 2001 From: Patrick Schwisow Date: Thu, 20 Dec 2012 15:31:46 -0600 Subject: [PATCH] Fix DDC-1690 Added the lines suggested by the original reporter. --- lib/Doctrine/ORM/UnitOfWork.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index 75e7a3501..e6ab95321 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -2573,6 +2573,9 @@ class UnitOfWork implements PropertyChangedListener $newValueOid = spl_object_hash($newValue); $this->entityIdentifiers[$newValueOid] = $associatedId; $this->identityMap[$targetClass->rootEntityName][$relatedIdHash] = $newValue; + if ($newValue instanceof NotifyPropertyChanged) { + $newValue->addPropertyChangedListener($this); + } $this->entityStates[$newValueOid] = self::STATE_MANAGED; // make sure that when an proxy is then finally loaded, $this->originalEntityData is set also! break;