diff options
| -rw-r--r-- | composer.json | 2 | ||||
| -rw-r--r-- | framework/PradoBase.php | 7 | 
2 files changed, 5 insertions, 4 deletions
| diff --git a/composer.json b/composer.json index bef8b8f7..dddbdfdf 100644 --- a/composer.json +++ b/composer.json @@ -4,6 +4,6 @@    "homepage": "http://www.pradosoft.com/",    "license": "BSD",    "require": { -    "php": ">=5.2.4", +    "php": ">=5.2.4"    }  } diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 403fdb80..dda60331 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -98,9 +98,10 @@ class PradoBase  	 */  	public static function autoload($className)  	{ -		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."); +		if ((@include($className.self::CLASS_FILE_EXT)) !== false) { +			return true; +		} +		return false;  	}  	/** | 
