From c9d6a046fac8124d9353aaccdba051b73ac5f207 Mon Sep 17 00:00:00 2001 From: meus Date: Thu, 2 Aug 2007 19:28:46 +0000 Subject: [PATCH] fixing issue mention on the mailing list by tl@hdnet.de at 2.aug --- 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 8f98800c3..7e7f7f13e 100644 --- a/lib/Doctrine/Connection.php +++ b/lib/Doctrine/Connection.php @@ -473,7 +473,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun // build the statement $query = 'INSERT INTO ' . $this->quoteIdentifier($table) - . '(' . implode(', ', $cols) . ') ' + . ' (' . implode(', ', $cols) . ') ' . 'VALUES ('; $a = array();