Closed maechler closed 4 years ago
The setting folderCreateMask should be read from $GLOBALS['TYPO3_CONF_VARS']['SYS']['folderCreateMask']:
folderCreateMask
$GLOBALS['TYPO3_CONF_VARS']['SYS']['folderCreateMask']
https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/7.6/Important-36166-MoveAccessRightParametersFromBEToSYSConfiguration.html
I implemented it the same way TYPO3 does it in GeneralUtility:
GeneralUtility
https://github.com/TYPO3/TYPO3.CMS/blob/630f7c168f64d7fa045ac7f76af01f6381f1997b/typo3/sysext/core/Classes/Utility/GeneralUtility.php#L1989
The setting
folderCreateMask
should be read from$GLOBALS['TYPO3_CONF_VARS']['SYS']['folderCreateMask']
:https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/7.6/Important-36166-MoveAccessRightParametersFromBEToSYSConfiguration.html
I implemented it the same way TYPO3 does it in
GeneralUtility
:https://github.com/TYPO3/TYPO3.CMS/blob/630f7c168f64d7fa045ac7f76af01f6381f1997b/typo3/sysext/core/Classes/Utility/GeneralUtility.php#L1989