Fix: Corrige bug affiche note si fckeditor actif ou non
This commit is contained in:
parent
300ff9f9e7
commit
acb797a577
@ -747,7 +747,8 @@ if ($_GET["id"])
|
|||||||
|
|
||||||
// Note
|
// Note
|
||||||
print '<tr><td valign="top">'.$langs->trans("Note").'</td><td colspan="3">';
|
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 '</td></tr>';
|
||||||
|
|
||||||
print '</table>';
|
print '</table>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user