From dcd67f2ff98a9634cb0b825faf2c192ae4d63714 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Wed, 6 Apr 2016 21:04:57 +0200 Subject: Remove fatal error on autoload fail --- HISTORY | 9 +++++---- framework/PradoBase.php | 2 -- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/HISTORY b/HISTORY index c62ebd18..af5358f1 100644 --- a/HISTORY +++ b/HISTORY @@ -1,21 +1,22 @@ Version 3.3.1 XXX XX, 2016 +BUG: Issue #540 - Fix TActiveFileUpload on IE11 (ctrlaltca) +BUG: Issue #574 - Fix TActiveCustomValidator validation after error (ctrlaltca) +BUG: Issue #582 - Prado autoloader breaks class_exists conditionals (ctrlaltca) BUG: TJuiAutoComplete: fix parsing of suggestions (ctrlaltca) BUG: Fix callback for controls with PostState=false (ctrlaltca) BUG: Fix stopping even propagation on javascript events (ctrlaltca) -BUG: Issue #574 - Fix TActiveCustomValidator validation after error (ctrlaltca) BUG: Fix callback loading for dynamically created JuiControls (ctrlaltca) BUG: Fix ClientSide.RequestTimeOut on active controls (ctrlaltca) BUG: Fix error reporting for not-existing property set on TJuiControl (ctrlaltca) BUG: TJuiDialog: avoid "cannot call methods on dialog prior to initialization" error (ctrlaltca) -BUG: Issue #540 - Fix TActiveFileUpload on IE11 (ctrlaltca) +BUG: Fix callback update of TActiveCheckBoxList when initially empty (LCSKJ) +ENH: Issue #562 - Added TClientStyleSheet::PradoStyles (ctrlaltca) ENH: Issue #569 - Improved TJavascriptLogger / browser console logging of errors (ctrlaltca) ENH: Applied some misc optimizations to class serialization (ctrlaltca) ENH: Intercept fatal errors using register_shutdown_function (ctrlaltca) ENH: Activecontrols: avoid updating client side if the value didn't change (ctrlaltca) ENH: Added TReCaptcha2 / TReCaptcha2Validator (camilohaze) -BUG: Fix callback update of TActiveCheckBoxList when initially empty (LCSKJ) -ENH: Issue #562 - Added TClientStyleSheet::PradoStyles (ctrlaltca) Version 3.3.0 February 15, 2016 diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 2c5b2649..7cd26187 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -105,8 +105,6 @@ 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."); } /** -- cgit v1.2.3