From 5417ec5c4d2e1b7fd1a6b9935a294e7f2af9b793 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 24 Mar 2008 00:59:39 +0000 Subject: - add error_reporting to style.php (merge from r8464) - let the error handler deal with E_STRICT (same as E_WARNING/E_NOTICE) and E_RECOVERABLE_ERROR (same as E_USER_ERROR) git-svn-id: file:///svn/phpbb/trunk@8466 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'phpBB/includes/functions.php') diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 5005033166..9379284326 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2817,10 +2817,11 @@ function msg_handler($errno, $msg_text, $errfile, $errline) { case E_NOTICE: case E_WARNING: + case E_STRICT: // Check the error reporting level and return if the error level does not match // If DEBUG is defined the default level is E_ALL - if (($errno & ((defined('DEBUG')) ? E_ALL : error_reporting())) == 0) + if (($errno & ((defined('DEBUG')) ? E_ALL | E_STRICT : error_reporting())) == 0) { return; } @@ -2847,6 +2848,7 @@ function msg_handler($errno, $msg_text, $errfile, $errline) break; + case E_RECOVERABLE_ERROR: case E_USER_ERROR: if (!empty($user) && !empty($user->lang)) -- cgit v1.2.1