Index: t3lib/class.t3lib_pagerenderer.php
===================================================================
--- t3lib/class.t3lib_pagerenderer.php (revision 9230)
+++ t3lib/class.t3lib_pagerenderer.php (working copy)
@@ -1105,9 +1105,9 @@
foreach ($this->cssFiles as $file => $properties) {
$file = t3lib_div::resolveBackPath($file);
$file = t3lib_div::createVersionNumberedFilename($file);
- $tag = '';
if ($properties['allWrap'] && strpos($properties['allWrap'], '|') !== FALSE) {
$tag = str_replace('|', $tag, $properties['allWrap']);
@@ -1135,7 +1135,7 @@
foreach ($this->jsLibs as $name => $properties) {
$properties['file'] = t3lib_div::resolveBackPath($properties['file']);
$properties['file'] = t3lib_div::createVersionNumberedFilename($properties['file']);
- $tag = '';
+ $tag = '';
if ($properties['allWrap'] && strpos($properties['allWrap'], '|') !== FALSE) {
$tag = str_replace('|', $tag, $properties['allWrap']);
}
@@ -1159,7 +1159,7 @@
foreach ($this->jsFiles as $file => $properties) {
$file = t3lib_div::resolveBackPath($file);
$file = t3lib_div::createVersionNumberedFilename($file);
- $tag = '';
+ $tag = '';
if ($properties['allWrap'] && strpos($properties['allWrap'], '|') !== FALSE) {
$tag = str_replace('|', $tag, $properties['allWrap']);
}
Index: typo3/sysext/cms/tslib/class.tslib_pagegen.php
===================================================================
--- typo3/sysext/cms/tslib/class.tslib_pagegen.php (revision 9230)
+++ typo3/sysext/cms/tslib/class.tslib_pagegen.php (working copy)
@@ -543,7 +543,7 @@
);
} else {
$pageRenderer->addCssFile(
- htmlspecialchars($ss),
+ $ss,
$GLOBALS['TSFE']->pSetup['includeCSS.'][$key . '.']['alternate'] ? 'alternate stylesheet' : 'stylesheet',
$GLOBALS['TSFE']->pSetup['includeCSS.'][$key . '.']['media'] ? $GLOBALS['TSFE']->pSetup['includeCSS.'][$key . '.']['media'] : 'all',
$GLOBALS['TSFE']->pSetup['includeCSS.'][$key . '.']['title'] ? $GLOBALS['TSFE']->pSetup['includeCSS.'][$key . '.']['title'] : '',
@@ -679,9 +679,9 @@
$type = 'text/javascript';
}
$pageRenderer->addJsLibrary(
- htmlspecialchars($key),
- htmlspecialchars($ss),
- htmlspecialchars($type),
+ $key,
+ $ss,
+ $type,
$GLOBALS['TSFE']->pSetup['includeJSlibs.'][$key . '.']['compress'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJSlibs.'][$key . '.']['forceOnTop'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJSlibs.'][$key . '.']['allWrap']
@@ -701,9 +701,9 @@
$type = 'text/javascript';
}
$pageRenderer->addJsFooterLibrary(
- htmlspecialchars($key),
- htmlspecialchars($ss),
- htmlspecialchars($type),
+ $key,
+ $ss,
+ $type,
$GLOBALS['TSFE']->pSetup['includeJSFooterlibs.'][$key . '.']['compress'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJSFooterlibs.'][$key . '.']['forceOnTop'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJSFooterlibs.'][$key . '.']['allWrap']
@@ -724,8 +724,8 @@
$type = 'text/javascript';
}
$pageRenderer->addJsFile(
- htmlspecialchars($ss),
- htmlspecialchars($type),
+ $ss,
+ $type,
$GLOBALS['TSFE']->pSetup['includeJS.'][$key . '.']['compress'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJS.'][$key . '.']['forceOnTop'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJS.'][$key . '.']['allWrap']
@@ -745,8 +745,8 @@
$type = 'text/javascript';
}
$pageRenderer->addJsFooterFile(
- htmlspecialchars($ss),
- htmlspecialchars($type),
+ $ss,
+ $type,
$GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['compress'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['forceOnTop'] ? TRUE : FALSE,
$GLOBALS['TSFE']->pSetup['includeJSFooter.'][$key . '.']['allWrap']