From d288e99a3434046671082d44f681871db5686025 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 10 Jul 2010 19:23:38 +0200 Subject: [PATCH] DDC-681 - Fix call to wrong function, need field not column names in lock() --- 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 986269919..b6bb85e60 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -1697,7 +1697,7 @@ class UnitOfWork implements PropertyChangedListener $oid = spl_object_hash($entity); $this->getEntityPersister($class->name)->lock( - array_combine($class->getIdentifierColumnNames(), $this->entityIdentifiers[$oid]), + array_combine($class->getIdentifierFieldNames(), $this->entityIdentifiers[$oid]), $lockMode ); }