Fix wrong font when creating a new message BT#15554

pull/3173/head
Julio Montoya 7 years ago
parent f922a9ebd9
commit 533a143bf6
  1. 2
      main/inc/lib/formvalidator/FormValidator.class.php
  2. 2
      main/messages/new_message.php

@ -1023,7 +1023,7 @@ EOT;
/** @var HtmlEditor $element */
$element = $this->getElement($name);
$config['style'] = false;
$config['style'] = isset($config['style']) ? $config['style'] : false;
if ($fullPage) {
$config['fullPage'] = true;
// Adds editor_content.css in ckEditor

@ -179,7 +179,7 @@ function manageForm($default, $select_from_user_list = null, $sent_to = '', $tpl
get_lang('Message'),
false,
false,
['ToolbarSet' => 'Messages', 'Width' => '100%', 'Height' => '250']
['ToolbarSet' => 'Messages', 'Width' => '100%', 'Height' => '250', 'style' => true]
);
if (isset($_GET['re_id'])) {

Loading…
Cancel
Save