Closed Chrissitopher closed 5 years ago
TypoScriptFrontendController->beUserLogin has been deprecated in TYPO3 9.5 and is removed in TYPO3 10.
TypoScriptFrontendController->beUserLogin
Migration:
Use $context->getPropertyFromAspect('backend.user', 'isLoggedIn') instead of $TSFE->beUserLogin.
$context->getPropertyFromAspect('backend.user', 'isLoggedIn')
$TSFE->beUserLogin
See https://docs.typo3.org/typo3cms/extensions/core/Changelog/9.4/Deprecation-85389-VariousPublicPropertiesInFavorOfContextAPI.html?highlight=beuserlogin
TypoScriptFrontendController->beUserLogin
has been deprecated in TYPO3 9.5 and is removed in TYPO3 10.Migration:
Use
$context->getPropertyFromAspect('backend.user', 'isLoggedIn')
instead of$TSFE->beUserLogin
.See https://docs.typo3.org/typo3cms/extensions/core/Changelog/9.4/Deprecation-85389-VariousPublicPropertiesInFavorOfContextAPI.html?highlight=beuserlogin