Bug #19202
closedFramehandling problem with FF 3
0%
Description
Hi
The Firefox 3.x problem with modules has not been fully solved.
goToModule function generates this kind of code for modules, which don't have submodules
case 'txmmforumM1':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+"../typo3conf/ext/mm_forum/mod1/index.php?"+additionalGetVariables);
top.highlightModuleMenuItem("ID_147144176", 1);
break;
case 'txllxmltranslateM1':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+"../typo3conf/ext/llxmltranslate/mod1/index.php?"+additionalGetVariables);
top.highlightModuleMenuItem("ID_31972543", 1);
That doesn't work in FF 3.
In alt_menu_functions.php is this kind of code
$JScmd = '
top.document.getElementsByName(\'content\')[0].src=top.getModuleUrl(top.TS.PATH_typo3+"'.$this->wrapLinkWithAB($link).'"+additionalGetVariables);
top.highlightModuleMenuItem("'.$moduleCSSId.'",1);';
$mJScmds[] = "case '".$moduleName."': \n ".$JScmd." \n break;";
that doesn't work in FF 3 - concerning this kinds of modules Typo3 behaves like Typo3 4.1.5 with all modules.
(issue imported from #M9136)
Files
Updated by Benni Mack over 16 years ago
Hey Tapio,
thanks for the hint, I noticed that one too! I have a patch flying around that fixes that issue and hope to send it to the core list soon!