--- currentrunk/t3lib/stddb/tables.php 2010-09-24 13:43:45.000000000 +0200 +++ workingcopy/t3lib/stddb/tables.php 2010-09-24 13:55:16.000000000 +0200 @@ -439,13 +439,11 @@ * Every entry in this array represents a menu item on either first (key) or second level (value from list) in the left menu in the TYPO3 backend * For information about adding modules to TYPO3 you should consult the documentation found in "Inside TYPO3" */ -$TBE_MODULES = array( - 'web' => 'list,info,perm,func', - 'file' => 'list', - 'user' => 'ws', - 'tools' => 'em', - 'help' => 'about,cshmanual' -); +$TBE_MODULES['web'] = 'list,info,perm,func'; +t3lib_extMgm::isLoaded('filelist') ? $TBE_MODULES['file'] = 'list' : ''; +$TBE_MODULES['user'] = 'ws'; +$TBE_MODULES['tools'] = 'em'; +$TBE_MODULES['help'] = 'about,cshmanual'; /**