From 0d84bcd2af531695bb1b520c7e6e6d641c0a956a Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Wed, 12 Sep 2007 16:06:33 +0000 Subject: [PATCH] Made loadTemplate() simply call actAs() rather than duplicating code. Original loadTemplate() was broken anyways, addTemplate() was never called --- lib/Doctrine/Record/Abstract.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/Doctrine/Record/Abstract.php b/lib/Doctrine/Record/Abstract.php index 9414a9321..623dc9b98 100644 --- a/lib/Doctrine/Record/Abstract.php +++ b/lib/Doctrine/Record/Abstract.php @@ -246,13 +246,7 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access */ public function loadTemplate($template, array $options = array()) { - $tpl = new $template($options); - $tpl->setTable($this->_table); - - $tpl->setUp(); - - $tpl->setTableDefinition(); - return $this; + $this->actAs($template, $options); } /** * actAs