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.
This commit is contained in:
Daniel Siepmann 2023-02-16 15:39:05 +01:00
parent b937e6aab2
commit b1adf959b3
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -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);