Fixed issue with create() and the array of passed data
This commit is contained in:
parent
f11e95497c
commit
e8087eb53f
1 changed files with 2 additions and 3 deletions
|
@ -1008,9 +1008,8 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
||||||
*/
|
*/
|
||||||
public function create(array $array = array())
|
public function create(array $array = array())
|
||||||
{
|
{
|
||||||
$this->_data = $array;
|
$record = new $this->_options['name']($this, true);
|
||||||
$record = new $this->_options['name']($this, true);
|
$record->fromArray($array);
|
||||||
$this->_data = array();
|
|
||||||
|
|
||||||
return $record;
|
return $record;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue