From 70c94fae678b0248335ab6ff5e8450ec8271bdfc Mon Sep 17 00:00:00 2001 From: kselli Date: Mon, 20 Aug 2007 23:04:30 +0000 Subject: [PATCH] Patched the bug #423 which didn't allow user to set attributes in the construct() method. Ticket: 423 --- lib/Doctrine/Record.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 556529e71..8f09768c6 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -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