Fix: Corrige bug affiche note si fckeditor actif ou non

This commit is contained in:
Laurent Destailleur 2006-10-30 23:44:39 +00:00
parent 300ff9f9e7
commit acb797a577

View File

@ -747,7 +747,8 @@ if ($_GET["id"])
// Note
print '<tr><td valign="top">'.$langs->trans("Note").'</td><td colspan="3">';
print nl2br(htmlentities($act->note));
if ($conf->fckeditor->enabled) print nl2br($act->note);
else print nl2br(htmlentities($act->note));
print '</td></tr>';
print '</table>';