+2008-03-14 Ingo Renner <ingo@typo3.org>
+
+ * Fixed bug #7850: error in publish.php if errors in TCE should be shown, credits Daniel Pötzinger
+
2008-03-13 Stanislas Rolland <typo3@sjbr.ca>
* Fixed bug #7851: htmlArea RTE causes memory leaks in IE
$errors = $tce->errorLog;
if (count($errors) > 0) {
- $content .= '<h3>' . $LANG->getLL('label_errors') . '</h3><br/>' . implode('<br/>',$errors);
+ $content .= '<h3>' . $GLOBALS['LANG']->getLL('label_errors') . '</h3><br/>' . implode('<br/>',$errors);
$content .= '<br /><br /><a href="index.php">' . $GLOBALS['LANG']->getLL('return_to_index') . '</a>';
}
else {