2010-11-23 Steffen Kamper <steffen@typo3.org>
+ * Fixed bug #16545: befunc helpText use wrong variable
* Fixed bug #14050: CleanUp - CGL format of t3lib files - t3lib_bedisplaylog
* Fixed bug #14050: CleanUp - CGL format of t3lib files - t3lib_basicfilefunc
* Fixed bug #14050: CleanUp - CGL format of t3lib files - t3lib_autoloader
$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'] = '<p class="t3-help-short">' . nl2br(htmlspecialchars($data['description'])) . $arrow . '</p>';
+ if ($helpTextArray['description'] || $arrow) {
+ $output['description'] = '<p class="t3-help-short">' . nl2br(htmlspecialchars($helpTextArray['description'])) . $arrow . '</p>';
}
return $output;