From bfe0abdd90efd7715d2c25bab0abd0a6912e96d9 Mon Sep 17 00:00:00 2001 From: Ciro Mattia Gonano Date: Wed, 11 Sep 2013 17:50:41 +0200 Subject: Try to go back to default autoload. --- framework/PradoBase.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'framework/PradoBase.php') diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 7cb7e841..f75cc680 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -98,10 +98,9 @@ class PradoBase */ public static function autoload($className) { - if ((@include($className.self::CLASS_FILE_EXT)) !== false) { - return true; - } - return false; + include_once($className.self::CLASS_FILE_EXT); + if(!class_exists($className,false) && !interface_exists($className,false)) + self::fatalError("Class file for '$className' cannot be found."); } /** -- cgit v1.2.3