Thomas Bruederli
2013-09-16 c1ff572e176dc930c52063e53364daa315d34666
Touch new default font size settings: simplified + codestyle + updated changelog
3 files modified
10 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/steps/mail/sendmail.inc 5 ●●●●● patch | view | raw | blame | history
program/steps/settings/func.inc 4 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Make default font size for HTML messages configurable (request #118)
- Display full attachment name using title attribute when name is too long to display (#1489320)
- Fix XSS issue in addressbook group name field [CVE-2013-5646] (#1489333)
- Fix attachment icon issue when rare font/language is used (#1489326)
program/steps/mail/sendmail.inc
@@ -473,10 +473,9 @@
$message_body = get_input_value('_message', RCUBE_INPUT_POST, TRUE, $message_charset);
if ($isHtml) {
  $font = rcube_fontdefs($RCMAIL->config->get('default_font'));
  $font = $font && is_string($font) ? ' '.$font : NULL;
  $font_family = rcube_fontdefs($RCMAIL->config->get('default_font', 'Arial'));
  $font_size = $RCMAIL->config->get('default_font_size');
  $bstyle = " style='font: ".$font_size.$font.";'";
  $bstyle = ' style="font:' . $font_size . ' ' . $font_family . ';"';
  // append doctype and html/body wrappers
  $message_body = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">' .
program/steps/settings/func.inc
@@ -864,8 +864,8 @@
                $blocks['main']['options']['default_font'] = array(
                    'title' => html::label($field_id, Q(rcube_label('defaultfont'))),
                    'content' => $select_default_font_size->show($RCMAIL->config->get('default_font_size', 1)).
                                 $select_default_font->show($RCMAIL->config->get('default_font', 1))
                    'content' => $select_default_font->show($RCMAIL->config->get('default_font', 1)) .
                        $select_default_font_size->show($RCMAIL->config->get('default_font_size', 1))
                );
            }
        break;