From 003e6ad1638b2e7dcad5e6884a5d3d430f088f5b Mon Sep 17 00:00:00 2001 From: zYne Date: Fri, 17 Aug 2007 21:24:55 +0000 Subject: [PATCH] --- lib/Doctrine/Record.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index caad0b344..556529e71 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -1478,7 +1478,7 @@ abstract class Doctrine_Record extends Doctrine_Record_Abstract implements Count } public function __call($method, $args) { - foreach ($this->_table->getTemplates as $template) { + foreach ($this->_table->getTemplates() as $template) { if (method_exists($template, $method)) { return call_user_func_array(array($template, $method), $args); }