2010-05-03 Steffen Kamper <info@sk-typo3.de>
+ * Fixed bug #14282: t3lib_compressor processes JSlibs, even when it's not supposed to to (thanks to Steffen Gebert)
* Fixed bug #14283: Loading scriptaculous with all modules fails with t3lib_compressor (thanks to Steffen Gebert)
* Fixed bug #7795: opendocs: documents are opened without pagetree (thanks to Stefan Galinski)
* Fixed bug #14144: Positioning of toolbar elements broken, especially in Safari (thanks to Stefan Galinski)
$filename = t3lib_div::createVersionNumberedFilename($filename);
break;
case 'BE':
- $filename = $this->getCompressor()->compressJsFile($filename);
+ if ($this->compressJavascript) {
+ $filename = $this->getCompressor()->compressJsFile($filename);
+ }
break;
}
return $filename;