You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (strpos(VersionNumberUtility::getNumericTypo3Version(), '9') === 0) {
have to be
if (VersionNumberUtility::convertVersionNumberToInteger(VersionNumberUtility::getNumericTypo3Version()) >= VersionNumberUtility::convertVersionNumberToInteger('9')) {
to use 'page' instead of 'pages_language_overlay' in TYPO3 v10 too.
The text was updated successfully, but these errors were encountered:
In DirectMailUtility.php
if (strpos(VersionNumberUtility::getNumericTypo3Version(), '9') === 0) {
have to be
if (VersionNumberUtility::convertVersionNumberToInteger(VersionNumberUtility::getNumericTypo3Version()) >= VersionNumberUtility::convertVersionNumberToInteger('9')) {
to use 'page' instead of 'pages_language_overlay' in TYPO3 v10 too.
The text was updated successfully, but these errors were encountered: