From ccc789eadda2cb31052bd178ed5490f0d805ef29 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 15 May 2014 00:18:50 +0200 Subject: [PATCH] DDC-3123 - the UoW should clear extra updates immediately --- lib/Doctrine/ORM/UnitOfWork.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index 25b657304..96570971c 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -483,6 +483,8 @@ class UnitOfWork implements PropertyChangedListener $this->entityChangeSets[$oid] = $changeset; $this->getEntityPersister(get_class($entity))->update($entity); } + + $this->extraUpdates = array(); } /**