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;