Index: t3lib/class.t3lib_befunc.php =================================================================== --- t3lib/class.t3lib_befunc.php (revision 9508) +++ t3lib/class.t3lib_befunc.php (revision ) @@ -2683,12 +2683,12 @@ $output .= $helpTextArray['description']; } // add see also arrow if we have more info - if ($data['moreInfo']) { + if ($helpTextArray['moreInfo']) { $arrow = t3lib_iconWorks::getSpriteIcon('actions-view-go-forward'); } // add description text - if ($data['description'] || $arrow) { - $output['description'] = '

' . nl2br(htmlspecialchars($data['description'])) . $arrow . '

'; + if ($helpTextArray['description'] || $arrow) { + $output['description'] = '

' . nl2br(htmlspecialchars($helpTextArray['description'])) . $arrow . '

'; } return $output;