From ab597cdf30047b795d7a9c25d6a9e55a2ecb9a63 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Thu, 25 Oct 2007 14:18:26 +0000 Subject: [PATCH] Fixes [ticket:500] --- lib/Doctrine/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Connection.php b/lib/Doctrine/Connection.php index 4b518937f..36fa5d178 100644 --- a/lib/Doctrine/Connection.php +++ b/lib/Doctrine/Connection.php @@ -957,7 +957,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun } $class = $name . 'Table'; - if (class_exists($class) && in_array('Doctrine_Table', class_parents($class))) { + if (class_exists($class, true) && in_array('Doctrine_Table', class_parents($class))) { $table = new $class($name, $this, true); } else { $table = new Doctrine_Table($name, $this, true);