From da809fdeda8d436392a8f71a6129a5c8a746d1b7 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Mon, 9 Aug 2010 21:26:10 +0200 Subject: [PATCH] DDC-735 - Forward compatible fix for ArrayCollection::removeElement() returning the element instead of true --- lib/Doctrine/ORM/PersistentCollection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/PersistentCollection.php b/lib/Doctrine/ORM/PersistentCollection.php index 971d1f72c..31e9b74dc 100644 --- a/lib/Doctrine/ORM/PersistentCollection.php +++ b/lib/Doctrine/ORM/PersistentCollection.php @@ -384,7 +384,7 @@ final class PersistentCollection implements Collection $this->changed(); if ($this->association !== null && $this->association->isOneToMany() && $this->association->orphanRemoval) { - $this->em->getUnitOfWork()->scheduleOrphanRemoval($removed); + $this->em->getUnitOfWork()->scheduleOrphanRemoval($element); } } return $removed;