Index: t3lib/class.t3lib_tceforms.php =================================================================== --- t3lib/class.t3lib_tceforms.php (revision 9282) +++ t3lib/class.t3lib_tceforms.php (working copy) @@ -1201,15 +1201,15 @@ $item .= ''; } - // old function "checkbox" now the option to set the date / remove the date - if (isset($config['checkbox'])) { - $item .= t3lib_iconWorks::getSpriteIcon('actions-input-clear', array('tag' => 'a', 'class' => 't3-tceforms-input-clearer', 'onclick' => 'document.getElementById(\'' . $inputId . '\').value=\'\';' . implode('', $PA['fieldChangeFunc']))); - } $PA['fieldChangeFunc'] = array_merge( array('typo3form.fieldGet' => 'typo3form.fieldGet(' . $paramsList . ');'), $PA['fieldChangeFunc'] ); + // old function "checkbox" now the option to set the date / remove the date + if (isset($config['checkbox'])) { + $item .= t3lib_iconWorks::getSpriteIcon('actions-input-clear', array('tag' => 'a', 'class' => 't3-tceforms-input-clearer', 'onclick' => 'document.getElementById(\'' . $inputId . '\').value=\'\';' . implode('', $PA['fieldChangeFunc']))); + } $mLgd = ($config['max'] ? $config['max'] : 256); $iOnChange = implode('', $PA['fieldChangeFunc']);