diff options
Diffstat (limited to 'framework/pradolite.php')
-rw-r--r-- | framework/pradolite.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/framework/pradolite.php b/framework/pradolite.php index 2b75df89..d5acd449 100644 --- a/framework/pradolite.php +++ b/framework/pradolite.php @@ -1,7 +1,7 @@ <?php /** * File Name: pradolite.php - * Last Update: 2013/09/11 16:01:18 + * Last Update: 2013/09/11 16:55:33 * Generated By: buildscripts/phpbuilder/build.php * * This file is used in lieu of prado.php to boost PRADO application performance. @@ -34,10 +34,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."); } public static function poweredByPrado($logoType=0) { |