1
0
mirror of synced 2025-01-18 22:41:43 +03:00
This commit is contained in:
zYne 2007-08-29 22:15:25 +00:00
parent ed2822938a
commit 04e5888a3c

View File

@ -437,7 +437,7 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
public function hydrate(array $data)
{
$this->_values = $this->cleanData($data);
$this->_data = $data;
$this->_data = array_merge($this->_data, $data);
$this->prepareIdentifiers(true);
}