mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Changed Debug::loadErrorHandlers to use value returned by error_reporting() rather than E_ALL. This way, the user can adjust the error handler screens with the error_reporting function.
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60555 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
62d0de45d8
commit
b512e4bd3b
@ -207,7 +207,7 @@ class Debug {
|
||||
*/
|
||||
static function loadErrorHandlers() {
|
||||
//set_error_handler('errorHandler', (E_ALL ^ E_NOTICE) ^ E_USER_NOTICE);
|
||||
set_error_handler('errorHandler', E_ALL);
|
||||
set_error_handler('errorHandler', error_reporting());
|
||||
set_exception_handler('exceptionHandler');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user