From 7e2669d1bda4829e02a55181f1dd37a656c80bd7 Mon Sep 17 00:00:00 2001 From: zYne Date: Wed, 28 Nov 2007 23:06:04 +0000 Subject: [PATCH] fixes #624 --- lib/Doctrine/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Connection.php b/lib/Doctrine/Connection.php index fc1f5a11b..dd120028d 100644 --- a/lib/Doctrine/Connection.php +++ b/lib/Doctrine/Connection.php @@ -544,7 +544,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun foreach ($fields as $fieldName => $value) { if ($value instanceof Doctrine_Expression) { $set[] = $table->getColumnName($fieldName) . ' = ' . $value->getSql(); - unset($fields[$name]); + unset($fields[$fieldName]); } else { $set[] = $table->getColumnName($fieldName) . ' = ?'; }