Index: typo3/sysext/cms/tslib/class.tslib_pagegen.php =================================================================== --- typo3/sysext/cms/tslib/class.tslib_pagegen.php (revision 6429) +++ typo3/sysext/cms/tslib/class.tslib_pagegen.php (working copy) @@ -735,21 +735,21 @@ } } - if (is_array($GLOBALS['TSFE']->pSetup['includeFooterJS.'])) { - foreach ($GLOBALS['TSFE']->pSetup['includeFooterJS.'] as $key => $JSfile) { + if (is_array($GLOBALS['TSFE']->pSetup['includeJSFooter.'])) { + foreach ($GLOBALS['TSFE']->pSetup['includeJSFooter.'] as $key => $JSfile) { if (!is_array($JSfile)) { - $ss = $GLOBALS['TSFE']->pSetup['includeFooterJS.'][$key . '.']['external'] ? $JSfile : $GLOBALS['TSFE']->tmpl->getFileName($JSfile); + $ss = $GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['external'] ? $JSfile : $GLOBALS['TSFE']->tmpl->getFileName($JSfile); if ($ss) { - $type = $GLOBALS['TSFE']->pSetup['includeFooterJS.'][$key . '.']['type']; + $type = $GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['type']; if (! $type) { $type = 'text/javascript'; } $pageRenderer->addJsFooterFile( htmlspecialchars($ss), htmlspecialchars($type), - $GLOBALS['TSFE']->pSetup['includeFooterJS.'][$key . '.']['compress'] ? TRUE : FALSE, - $GLOBALS['TSFE']->pSetup['includeJS.'][$key . '.']['forceOnTop'] ? TRUE : FALSE, - $GLOBALS['TSFE']->pSetup['includeJS.'][$key . '.']['allWrap'] + $GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['compress'] ? TRUE : FALSE, + $GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['forceOnTop'] ? TRUE : FALSE, + $GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['allWrap'] ); } }