Index: t3lib/class.t3lib_tceforms.php =================================================================== --- t3lib/class.t3lib_tceforms.php (revision 2734) +++ t3lib/class.t3lib_tceforms.php (working copy) @@ -2604,8 +2604,9 @@ } // Put row together + // possible linebreaks in the label through xml: \n =>
, usage of nl2br() not possible, so it's done through str_replace. Added in 4.2 $tRows[]='
-
'.($vDEFkey=='vDEF' ? '' : $this->getLanguageIcon($table,$row,$vDEFkey)).$theTitle.'
+
'.($vDEFkey=='vDEF' ? '' : $this->getLanguageIcon($table,$row,$vDEFkey)).str_replace('\n','
',$theTitle).'
'.$theFormEl.$defInfo.$this->renderVDEFDiff($editData[$key],$vDEFkey).'
'; }