Project

General

Profile

Bug #23599 » 15794_v4.diff

Administrator Admin, 2010-12-01 20:10

View differences:

t3lib/stddb/tables.php (Arbeitskopie)
* 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'
'web' => 'list',
'file' => '',
'user' => '',
'tools' => '',
'help' => '',
);
typo3/classes/class.modulemenu.php (Arbeitskopie)
'description' => $GLOBALS['LANG']->moduleLabels['labels'][$moduleKey.'label']
);
if (!is_array($moduleData['sub'])) {
if (!is_array($moduleData['sub']) && $moduleData['script'] != 'dummy.php') {
// Work around for modules with own main entry, but being self the only submodule
$modules[$moduleKey]['subitems'][$moduleKey] = array(
'name' => $moduleName,
......
'navigationFrameScriptParam' => NULL,
'navigationComponentId' => NULL,
);
} else {
} else if (is_array($moduleData['sub'])) {
foreach($moduleData['sub'] as $submoduleName => $submoduleData) {
$submoduleLink = t3lib_div::resolveBackPath($submoduleData['script']);
(3-3/3)