Actions
Bug #35687
closedcreateMergedFile failure on external links
Start date:
2012-04-04
Due date:
% Done:
0%
Estimated time:
0.50 h
TYPO3 Version:
4.6
PHP Version:
5.3
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:
Description
In t3lib/class.t3lib_compressor.php at line 292, the external filename is retrieved into the local filesystem, but the filename isn't updated to the local path.
Code change suggestion
Old
$filesToInclude[$key] = $this->retrieveExternalFile($filename);
New
$filename = $this->retrieveExternalFile($filename);
$filesToInclude[$key] = $filename;
Viola! Now, there's no more needing to set the following TypoScript for external JS/CSS files.
includeJSFooterlibs.XYZ.disableCompression = 1
includeJSFooterlibs.XYZ.excludeFromConcatenation = 1
Updated by Jigal van Hemert over 12 years ago
- Status changed from New to Closed
- Target version set to 4.6.8
Closed as duplicate of #32517 (which is just merged to 4.6 branch too).
Actions