Created
August 2, 2013 11:52
-
-
Save michaelklapper/6139318 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DAM settings | |
t3lib_div::loadTCA('tx_dam'); | |
t3lib_div::loadTCA('tx_dam_cat'); | |
//Disable DAM versioning | |
$TCA['tx_dam']['ctrl']['versioningWS'] = 0; | |
$TCA['tx_dam_cat']['ctrl']['versioningWS'] = 0; | |
$TCA['tx_dam']['ctrl']['versioningWS_alwaysAllowLiveEdit'] = 1; | |
$TCA['tx_dam_cat']['ctrl']['versioningWS_alwaysAllowLiveEdit'] = 1; | |
“versioningWS_alwaysAllowLiveEdit” allows even editors with only access to a workspace to edit DAM live records. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment