From 7e9c99a2f14387f49dd3be27d6e91bb56266e28d Mon Sep 17 00:00:00 2001 From: Steffen Ritter <info@rs-websystems.de> Date: Sun, 18 Dec 2011 12:32:31 +0100 Subject: [PATCH] [BUGFIX] TCEforms reference non-existant CSS file resize.css With the migration to ExtJS4 the CustomResizer has been modified. Since that the extra CSS file is superfluous. Remove the left over call in TCEforms. Change-Id: I4092b804c57478a30f90ec3fae12a6049741b1b0 Fixes: #32659 Releases: 4.7 Reviewed-on: http://review.typo3.org/7360 Reviewed-by: Steffen Gebert Tested-by: Steffen Gebert --- t3lib/class.t3lib_tceforms.php | 1 - 1 file changed, 1 deletion(-) diff --git a/t3lib/class.t3lib_tceforms.php b/t3lib/class.t3lib_tceforms.php index 21c70b025a25..104aae886ec7 100644 --- a/t3lib/class.t3lib_tceforms.php +++ b/t3lib/class.t3lib_tceforms.php @@ -5284,7 +5284,6 @@ class t3lib_TCEforms { // make textareas resizable and flexible if (!($GLOBALS['BE_USER']->uc['resizeTextareas'] == '0' && $GLOBALS['BE_USER']->uc['resizeTextareas_Flexible'] == '0')) { - $pageRenderer->addCssFile($this->backPath . '../t3lib/js/extjs/ux/resize.css'); $this->loadJavascriptLib('../t3lib/js/extjs/ux/Ext.ux.elasticTextArea.js'); } $resizableSettings = array( -- GitLab