1
0
mirror of synced 2024-12-14 15:16:04 +03:00

Patched the bug #423 which didn't allow user to set attributes in the construct() method.

Ticket: 423
This commit is contained in:
kselli 2007-08-20 23:04:30 +00:00
parent ce90ee576a
commit 70c94fae67

View File

@ -187,9 +187,11 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count
$this->_errorStack = new Doctrine_Validator_ErrorStack();
$repository = $this->_table->getRepository();
$repository->add($this);
$repository->add($this);
$this->construct();
}
$this->construct();
}
/**
* _index