From b1adf959b32de383bcc0cd3f0352c52838b44df4 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 16 Feb 2023 15:39:05 +0100 Subject: [PATCH] Show but don't break TYPO3 on PHP Warning Especially during updates many warnings can occur. Those are not handled as exception, but still as error. --- home/files/typo3-configuration/Debugging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/files/typo3-configuration/Debugging.php b/home/files/typo3-configuration/Debugging.php index 1883b19..e54dffa 100644 --- a/home/files/typo3-configuration/Debugging.php +++ b/home/files/typo3-configuration/Debugging.php @@ -18,4 +18,4 @@ $GLOBALS['TYPO3_CONF_VARS']['BE']['lang']['debug'] = false; $GLOBALS['TYPO3_CONF_VARS']['BE']['languageDebug'] = false; $GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = E_ALL & ~ (E_NOTICE | E_DEPRECATED); -$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = E_ALL & ~ (E_NOTICE | E_DEPRECATED); +$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = E_ALL & ~ (E_NOTICE | E_WARNING | E_DEPRECATED);