From 7551bb376228759b9d40024332778a03825b06f6 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Wed, 6 Oct 2010 23:09:49 +0200 Subject: [PATCH] Fix notice due to wrong variable reference --- 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 e3cd01568..b6d0393d3 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -573,7 +573,7 @@ class UnitOfWork implements PropertyChangedListener $this->computeChangeSet($targetClass, $entry); } else if ($state == self::STATE_REMOVED) { return new InvalidArgumentException("Removed entity detected during flush: " - . self::objToStr($removedEntity).". Remove deleted entities from associations."); + . self::objToStr($entry).". Remove deleted entities from associations."); } else if ($state == self::STATE_DETACHED) { // Can actually not happen right now as we assume STATE_NEW, // so the exception will be raised from the DBAL layer (constraint violation).