From 420ebe911ac311e2f87cd984a17e207c9b8e97f1 Mon Sep 17 00:00:00 2001
From: Benni Mack <benni.mack@typo3.org>
Date: Sun, 17 Oct 2010 14:22:25 +0000
Subject: [PATCH] Followup to #16006: Remove the checkbox that clears the input
 fields in TCE-forms and replace it with a sprite icon - fix for flexforms
 (Thanks to Jo Hasenau)

git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@9130 709f56b5-9817-0410-a4d7-c38de5d9e867
---
 ChangeLog                      | 1 +
 t3lib/class.t3lib_tceforms.php | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 0ccfdcd39d29..f82f41504cd9 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,7 @@
 
 2010-10-17  Benjamin Mack  <benni@typo3.org>
 
+	* Followup to #16006: Remove the checkbox that clears the input fields in TCE-forms and replace it with a sprite icon - fix for flexforms (Thanks to Jo Hasenau)
 	* Added feature #15844: Use HTML5 as the default TYPO3 Backend doktype
 	* Added feature #16026: Added hook / Cannot hook into the marker replacement functionality for BE templates
 	* Fixed bug #16020: Streamline usage of template.php:dynTabMenu
diff --git a/t3lib/class.t3lib_tceforms.php b/t3lib/class.t3lib_tceforms.php
index 65af6445d54d..983a3e69d6ff 100644
--- a/t3lib/class.t3lib_tceforms.php
+++ b/t3lib/class.t3lib_tceforms.php
@@ -1203,7 +1203,7 @@ class t3lib_TCEforms	{
 				htmlspecialchars($iOnChange) . '"' . $PA['onFocus'] . ' />'; // This is the EDITABLE form field.
 		$item .= '<input type="hidden" name="' . $PA['itemFormElName'] . '" value="' .
 				htmlspecialchars($PA['itemFormElValue']) . '" />'; // This is the ACTUAL form field - values from the EDITABLE field must be transferred to this field which is the one that is written to the database.
-		$item .= $fieldAppendix . '</span>';
+		$item .= $fieldAppendix . '</span><div style="clear:both;"></div>';
 		$this->extJSCODE .= 'typo3form.fieldSet(' . $paramsList . ');';
 
 			// going through all custom evaluations configured for this field
-- 
GitLab