diff --git a/htdocs/admin/fckeditor.php b/htdocs/admin/fckeditor.php
index 19367c8b50d..51247ac0b35 100644
--- a/htdocs/admin/fckeditor.php
+++ b/htdocs/admin/fckeditor.php
@@ -159,11 +159,12 @@ if (empty($conf->use_javascript_ajax)) {
continue;
}
+ $constante = 'FCKEDITOR_ENABLE_'.$const;
+ print ''."\n";
print '
';
print '| '.img_object("", $picto[$const]).' | ';
print ''.$langs->trans($desc).' | ';
print '';
- $constante = 'FCKEDITOR_ENABLE_'.$const;
$value = (isset($conf->global->$constante) ? $conf->global->$constante : 0);
if ($value == 0) {
print ''.img_picto($langs->trans("Disabled"), 'switch_off').'';
diff --git a/htdocs/core/modules/modFckeditor.class.php b/htdocs/core/modules/modFckeditor.class.php
index 3dfd0f233e5..8c30d8a0a51 100644
--- a/htdocs/core/modules/modFckeditor.class.php
+++ b/htdocs/core/modules/modFckeditor.class.php
@@ -69,8 +69,8 @@ class modFckeditor extends DolibarrModules
// Constants
$this->const = array();
- $this->const[0] = array("FCKEDITOR_ENABLE_SOCIETE", "yesno", "1", "WYSIWIG for description and note (except products/services)");
- $this->const[1] = array("FCKEDITOR_ENABLE_PRODUCTDESC", "yesno", "1", "WYSIWIG for products/services description and note");
+ $this->const[0] = array("FCKEDITOR_ENABLE_SOCIETE", "yesno", "1", "WYSIWIG for the fields descriptions of elements (except products/services)");
+ $this->const[1] = array("FCKEDITOR_ENABLE_PRODUCTDESC", "yesno", "1", "WYSIWIG for the fields description of products/services");
$this->const[2] = array("FCKEDITOR_ENABLE_MAILING", "yesno", "1", "WYSIWIG for mass emailings");
$this->const[3] = array("FCKEDITOR_ENABLE_DETAILS", "yesno", "1", "WYSIWIG for products details lines for all entities");
$this->const[4] = array("FCKEDITOR_ENABLE_USERSIGN", "yesno", "1", "WYSIWIG for user signature");
|