From 41a29a06754050190b76daf29138404b15138f03 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Mon, 5 Feb 2018 00:02:37 +0100 Subject: [PATCH] Remove admin check for Application Errors This test is no longer necessary, as we are now enforcing handling method DISPLAY_ERROR_HALT for all error types since commit c816588d2616225f33896e7f4f4cd5a45447bce6. Fixes #23876 --- admin/check/check_config_inc.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/admin/check/check_config_inc.php b/admin/check/check_config_inc.php index 6b7e077398..4dfeb53f69 100644 --- a/admin/check/check_config_inc.php +++ b/admin/check/check_config_inc.php @@ -85,11 +85,6 @@ array( false => 'Setting show_detailed_errors = ON is a potential security hazard as it can expose sensitive information.' ) ); -check_print_test_warn_row( 'MantisBT Application Errors should halt execution', - $g_display_errors[E_USER_ERROR] == DISPLAY_ERROR_HALT, - array( false => 'Continuing after an error may lead to system and/or data integrity issues. Set $g_display_errors[E_USER_ERROR] = DISPLAY_ERROR_HALT;' ) -); - check_print_test_warn_row( 'Email debugging should be OFF', empty( $g_debug_email ), array( false => 'All notification e-mails will be sent to: ' . $g_debug_email )