Changeset 4827
- Timestamp:
- 08/27/08 01:53:12 (10 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Connection.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Connection.php
r4720 r4827 634 634 $sql = 'UPDATE ' . $this->quoteIdentifier($table->getTableName()) 635 635 . ' SET ' . implode(', ', $set) 636 . ' WHERE ' . implode(' = ? AND ', $t able->getIdentifierColumnNames())636 . ' WHERE ' . implode(' = ? AND ', $this->quoteMultipleIdentifier($table->getIdentifierColumnNames())) 637 637 . ' = ?'; 638 638