Fix: Size of editor

This commit is contained in:
Laurent Destailleur 2010-10-11 20:07:09 +00:00
parent 84534c036b
commit 6f43ef4edf

View File

@ -563,7 +563,7 @@ if (GETPOST('action') == 'create')
// Note
print '<tr><td valign="top">'.$langs->trans("Note").'</td><td>';
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
$doleditor=new DolEditor('note',($_POST["note"]?$_POST["note"]:$actioncomm->note),280,'dolibarr_notes','In',true,$conf->fckeditor->enabled,ROWS_7,90);
$doleditor=new DolEditor('note',($_POST["note"]?$_POST["note"]:$actioncomm->note),280,'dolibarr_notes','In',true,true,$conf->fckeditor->enabled,ROWS_7,90);
$doleditor->Create();
print '</td></tr>';