From 5f6db9b9942053215532d9bc6bdc2c09ec7cb1d1 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 19 Apr 2016 16:15:39 +0200 Subject: Don't throw an error when trying to autoload a not-existing class related #582 --- framework/PradoBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/PradoBase.php') diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 7cd26187..d9c49898 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -104,7 +104,7 @@ class PradoBase */ public static function autoload($className) { - include_once($className.self::CLASS_FILE_EXT); + @include_once($className.self::CLASS_FILE_EXT); } /** -- cgit v1.2.3