Do not handle E_USER_DEPRECATED as exception

This is used by older EXT:solr versions.
This commit is contained in:
Daniel Siepmann 2023-04-04 09:23:51 +02:00
parent 9eb7d873a4
commit 85e86d8080
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_WARNING | E_DEPRECATED);
$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = E_ALL & ~ (E_NOTICE | E_WARNING | E_DEPRECATED | E_USER_DEPRECATED);