|
@@ -418,7 +418,7 @@ class FormTicket
|
|
|
}
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
|
|
$uselocalbrowser = true;
|
|
|
- $doleditor = new DolEditor('message', $msg, '100%', 230, $toolbarname, 'In', true, $uselocalbrowser, $conf->global->FCKEDITOR_ENABLE_TICKET, ROWS_8, '90%');
|
|
|
+ $doleditor = new DolEditor('message', $msg, '100%', 230, $toolbarname, 'In', true, $uselocalbrowser, getDolGlobalInt('FCKEDITOR_ENABLE_TICKET'), ROWS_8, '90%');
|
|
|
$doleditor->Create();
|
|
|
print '</td></tr>';
|
|
|
|
|
@@ -1475,7 +1475,7 @@ class FormTicket
|
|
|
print '</td><td>';
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
|
|
|
|
|
- $doleditor = new DolEditor('mail_intro', $mail_intro, '100%', 90, 'dolibarr_details', '', false, $uselocalbrowser, $conf->global->FCKEDITOR_ENABLE_SOCIETE, ROWS_2, 70);
|
|
|
+ $doleditor = new DolEditor('mail_intro', $mail_intro, '100%', 90, 'dolibarr_details', '', false, $uselocalbrowser, getDolGlobalInt('FCKEDITOR_ENABLE_SOCIETE'), ROWS_2, 70);
|
|
|
|
|
|
$doleditor->Create();
|
|
|
print '</td></tr>';
|
|
@@ -1512,7 +1512,7 @@ class FormTicket
|
|
|
//$toolbarname = 'dolibarr_details';
|
|
|
$toolbarname = 'dolibarr_notes';
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
|
|
- $doleditor = new DolEditor('message', $defaultmessage, '100%', 200, $toolbarname, '', false, $uselocalbrowser, $conf->global->FCKEDITOR_ENABLE_SOCIETE, ROWS_5, 70);
|
|
|
+ $doleditor = new DolEditor('message', $defaultmessage, '100%', 200, $toolbarname, '', false, $uselocalbrowser, getDolGlobalInt('FCKEDITOR_ENABLE_SOCIETE'), ROWS_5, 70);
|
|
|
$doleditor->Create();
|
|
|
print '</td></tr>';
|
|
|
|
|
@@ -1524,7 +1524,7 @@ class FormTicket
|
|
|
print $form->textwithpicto('', $langs->trans("TicketMessageMailSignatureHelp"), 1, 'help');
|
|
|
print '</td><td>';
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
|
|
- $doleditor = new DolEditor('mail_signature', $mail_signature, '100%', 150, 'dolibarr_details', '', false, $uselocalbrowser, $conf->global->FCKEDITOR_ENABLE_SOCIETE, ROWS_2, 70);
|
|
|
+ $doleditor = new DolEditor('mail_signature', $mail_signature, '100%', 150, 'dolibarr_details', '', false, $uselocalbrowser, getDolGlobalInt('FCKEDITOR_ENABLE_SOCIETE'), ROWS_2, 70);
|
|
|
$doleditor->Create();
|
|
|
print '</td></tr>';
|
|
|
}
|