From 85e86d8080120a3a2f38bf26fbd590c7a5c91c69 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Tue, 4 Apr 2023 09:23:51 +0200 Subject: [PATCH] Do not handle E_USER_DEPRECATED as exception This is used by older EXT:solr versions. --- 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 e54dffa..eb31dfb 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_WARNING | E_DEPRECATED); +$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = E_ALL & ~ (E_NOTICE | E_WARNING | E_DEPRECATED | E_USER_DEPRECATED);