Commit 04e5888a authored by zYne's avatar zYne

fixes #429

parent ed282293
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment