From 82432b33dfddd14cd4ad4d689b221a1ad8250794 Mon Sep 17 00:00:00 2001 From: RossC0 Date: Tue, 26 Jun 2007 12:51:46 +0000 Subject: [PATCH] #368 refs: r1846 Missed Doctrine_identifier --- lib/Doctrine/Record.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 5d2433bb7..83a175461 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -1095,7 +1095,7 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite foreach ($this as $column => $value) { $a[$column] = $value; } - if ($this->_table->getIdentifierType() == Doctrine_Identifier::AUTO_INCREMENT) { + if ($this->_table->getIdentifierType() == Doctrine::IDENTIFIER_AUTOINC) { $i = $this->_table->getIdentifier(); $a[$i] = $this->getIncremented(); }