Index: ext_conf_template.txt =================================================================== --- ext_conf_template.txt (revision 41722) +++ ext_conf_template.txt (working copy) @@ -1,7 +1,7 @@ # cat=basic/enable; type=options[ Default setup=default, Minimal (most disabled)=minimal, Example (many options switched on or off)=example, None (nothing set)=none ]; label=Setup: TSconfig setup defining modules functions and indexing behaviour. tsconfig = default - # cat=basic/enable; type=boolean; label= Enable Web>File: This enables the old Web>File module which shouldn't be needed anymore when using the DAM. Keep in mind that the Web>File module manage files without notifying the DAM about changes which generates inconsistencies. -web_file = 0 + # cat=basic/enable; type=boolean; label= Enable File>Filelist: This enables the old File>Filelist module which shouldn't be needed anymore when using the DAM. Keep in mind that the File>Filelist module manage files without notifying the DAM about changes which generates inconsistencies. +file_filelist = 0 # cat=basic/enable; type=boolean; label= Hide Media sysfolder: This adds global user TSConfig which hides the Media sysfolder for all users (options.hideRecords.pages = xx). hideMediaFolder = 0 # cat=basic/enable; type=boolean; label= media tag: This adds the tag to RTE content processing and frontend rendering. This is needed to create files links using DAM references. Additional page TSconfig may be needed to enable the media tag. See the manual for more information. Index: ext_tables.php =================================================================== --- ext_tables.php (revision 41722) +++ ext_tables.php (working copy) @@ -108,8 +108,8 @@ } } - // remove Web>File module - if(!$TYPO3_CONF_VARS['EXTCONF']['dam']['setup']['web_file']) { + // remove File>Filelist module + if(!$TYPO3_CONF_VARS['EXTCONF']['dam']['setup']['file_filelist']) { unset($temp_TBE_MODULES['file']); } $TBE_MODULES = $temp_TBE_MODULES;