From a05003016becee332fd1339d2f55a59b6e961c01 Mon Sep 17 00:00:00 2001 From: "Roman S. Borschel" Date: Fri, 16 Jul 2010 11:16:06 +0200 Subject: [PATCH] Stricter detection of the NOTIFY policy. --- lib/Doctrine/ORM/UnitOfWork.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index a75bc277c..d98fb7330 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -453,7 +453,7 @@ class UnitOfWork implements PropertyChangedListener // Entity is "fully" MANAGED: it was already fully persisted before // and we have a copy of the original data $originalData = $this->originalEntityData[$oid]; - $isChangeTrackingNotify = isset($this->entityChangeSets[$oid]); + $isChangeTrackingNotify = $class->isChangeTrackingNotify(); $changeSet = $isChangeTrackingNotify ? $this->entityChangeSets[$oid] : array(); foreach ($actualData as $propName => $actualValue) {