X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/blobdiff_plain/8950e266fde7c1690496edf610b00bc6889c1b81..4ea922d09a270cf0e0e17d66d5a3ebbab8f38c74:/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php diff --git a/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php b/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php index b419c737d87..eab6c9e7f53 100644 --- a/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php +++ b/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php @@ -105,16 +105,6 @@ class PrepareTypoScriptFrontendRendering implements MiddlewareInterface // @deprecated since TYPO3 v9.3, will be removed in TYPO3 v10.0 $this->controller->initializeRedirectUrlHandlers(true); - - // Hook for processing data submission to extensions - // This is done at this point, because we need the config values - if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkDataSubmission'])) { - trigger_error('The "checkDataSubmission" hook will be removed in TYPO3 v10.0 in favor of PSR-15. Use a middleware instead.', E_USER_DEPRECATED); - foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['checkDataSubmission'] as $className) { - GeneralUtility::makeInstance($className)->checkDataSubmission($this->controller); - } - } - return $handler->handle($request); }