Index: typo3/sysext/rtehtmlarea/class.tx_rtehtmlarea_base.php
===================================================================
--- typo3/sysext/rtehtmlarea/class.tx_rtehtmlarea_base.php (revision 7796)
+++ typo3/sysext/rtehtmlarea/class.tx_rtehtmlarea_base.php (working copy)
@@ -1153,7 +1153,7 @@
$filename = ($GLOBALS['TSFE']->absRefPrefix ? $GLOBALS['TSFE']->absRefPrefix : '') . t3lib_div::createVersionNumberedFilename($relativeFilename);
} else {
if ($compress) {
- $compressor = t3lib_div::makeInstance('t3lib_compressor');
+ $compressor = t3lib_div::makeInstance('t3lib_Compressor');
$filename = $compressor->compressJsFile('../' . $this->backPath . $relativeFilename);
} else {
$filename = t3lib_div::createVersionNumberedFilename('../' . $this->backPath . $relativeFilename);
@@ -1362,7 +1362,7 @@
function is_FE() {
return is_object($GLOBALS['TSFE']) && !$this->isFrontendEditActive();
}
-
+
/**
* Checks whether frontend editing is active.
*
Index: t3lib/spriteManager/class.t3lib_spritemanager_simplehandler.php
===================================================================
--- t3lib/spriteManager/class.t3lib_spritemanager_simplehandler.php (revision 7796)
+++ t3lib/spriteManager/class.t3lib_spritemanager_simplehandler.php (working copy)
@@ -132,7 +132,7 @@
/**
* loads all StyleSheets Files registered through t3lib_spriteManager::addIconSprite
* in fact the stylesheet-files are copied to t3lib_spriteManager::tempPath where they automatically
- * will be included from via template.php and t3lib_compressor.
+ * will be included from via template.php and t3lib_Compressor.
*
* @return void
*/
Index: t3lib/class.t3lib_pagerenderer.php
===================================================================
--- t3lib/class.t3lib_pagerenderer.php (revision 7796)
+++ t3lib/class.t3lib_pagerenderer.php (working copy)
@@ -47,7 +47,7 @@
protected $csConvObj;
protected $lang;
- /* @var t3lib_compressor Instance of t3lib_compressor */
+ /* @var t3lib_Compressor Instance of t3lib_Compressor */
protected $compressor;
// static array containing associative array for the included files
@@ -1421,13 +1421,13 @@
}
/**
- * Returns instance of t3lib_compressor
+ * Returns instance of t3lib_Compressor
*
- * @return t3lib_compressor Instance of t3lib_compressor
+ * @return t3lib_Compressor Instance of t3lib_Compressor
*/
protected function getCompressor() {
if ($this->compressor === NULL) {
- $this->compressor = t3lib_div::makeInstance('t3lib_compressor');
+ $this->compressor = t3lib_div::makeInstance('t3lib_Compressor');
}
return $this->compressor;
}
Index: t3lib/class.t3lib_compressor.php
===================================================================
--- t3lib/class.t3lib_compressor.php (revision 7796)
+++ t3lib/class.t3lib_compressor.php (working copy)
@@ -34,7 +34,7 @@
* @subpackage t3lib
* $Id$
*/
-class t3lib_compressor {
+class t3lib_Compressor {
protected $targetDirectory = 'typo3temp/compressor/';