Actions
Bug #33625
closedinsufficient handling of $GLOBALS['TCA'][$table]['ctrl']['versioningWS'] in class.t3lib_tcemain.php
Start date:
2012-02-02
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Setting $GLOBALS['TCA'][$table]['ctrl']['versioningWS'] = FALSE won't disable versioning because of insufficient handling in class.t3lib_tcemain.php
All occurrences of
if (isset($GLOBALS['TCA'][$table]['ctrl']['versioningWS'])) {}
should be changed to
if (isset($GLOBALS['TCA'][$table]['ctrl']['versioningWS']) && $GLOBALS['TCA'][$table]['ctrl']['versioningWS']) {}
Files
Actions