diff --git a/htdocs/comm/mailing/fiche.php b/htdocs/comm/mailing/fiche.php
index a58e7d6ad4f..88ee011bf8f 100644
--- a/htdocs/comm/mailing/fiche.php
+++ b/htdocs/comm/mailing/fiche.php
@@ -668,7 +668,7 @@ if ($action == 'create')
print '
'.$langs->trans("MailMessage").' ';
print ' '.$langs->trans("CommonSubstitutions").': ';
foreach($object->substitutionarray as $key => $val)
{
diff --git a/htdocs/theme/amarok/ckeditor/config.js b/htdocs/theme/amarok/ckeditor/config.js
index 0f3a3eb60d3..0f2dbb3fc6f 100755
--- a/htdocs/theme/amarok/ckeditor/config.js
+++ b/htdocs/theme/amarok/ckeditor/config.js
@@ -79,4 +79,12 @@ CKEDITOR.editorConfig = function( config )
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['SpecialChar']
];
+
+ // Used for mailing fields
+ config.toolbar_dolibarr_readonly =
+ [
+ ['Source','Maximize'],
+ ['Find']
+ ];
+
};
diff --git a/htdocs/theme/auguria/ckeditor/config.js b/htdocs/theme/auguria/ckeditor/config.js
index 45e65240f25..ed3e3d462b9 100644
--- a/htdocs/theme/auguria/ckeditor/config.js
+++ b/htdocs/theme/auguria/ckeditor/config.js
@@ -79,4 +79,12 @@ CKEDITOR.editorConfig = function( config )
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','SpecialChar']
];
+
+ // Used for mailing fields
+ config.toolbar_dolibarr_readonly =
+ [
+ ['Source','Maximize'],
+ ['Find']
+ ];
+
};
diff --git a/htdocs/theme/bureau2crea/ckeditor/config.js b/htdocs/theme/bureau2crea/ckeditor/config.js
index 45e65240f25..ed3e3d462b9 100644
--- a/htdocs/theme/bureau2crea/ckeditor/config.js
+++ b/htdocs/theme/bureau2crea/ckeditor/config.js
@@ -79,4 +79,12 @@ CKEDITOR.editorConfig = function( config )
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','SpecialChar']
];
+
+ // Used for mailing fields
+ config.toolbar_dolibarr_readonly =
+ [
+ ['Source','Maximize'],
+ ['Find']
+ ];
+
};
diff --git a/htdocs/theme/cameleo/ckeditor/config.js b/htdocs/theme/cameleo/ckeditor/config.js
index 85dd8c7429f..99d5d33fc5d 100644
--- a/htdocs/theme/cameleo/ckeditor/config.js
+++ b/htdocs/theme/cameleo/ckeditor/config.js
@@ -79,4 +79,11 @@ CKEDITOR.editorConfig = function( config )
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','SpecialChar']
];
+
+ // Used for mailing fields
+ config.toolbar_dolibarr_readonly =
+ [
+ ['Source','Maximize'],
+ ['Find']
+ ];
};
|