diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-09-21 11:24:16 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-09-21 11:24:16 +0200 |
commit | f7b2bfba092213af2f7101b18b96e957cbe0b217 (patch) | |
tree | 294af8a00516d41fe4c0989795a9e5d2539c8395 /program/steps/mail/compose.inc | |
parent | a149d566fca224e503b7676337486ec2670e6cca (diff) |
Bring back possibility to unset default font family and font size
Fix style attribute quoting when font-family contains double quotes
SOme code improvements
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r-- | program/steps/mail/compose.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 30c9f79fb..b62f9bf5a 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -149,7 +149,9 @@ if ($font && !is_array($font)) { } // default font size for HTML editor -$OUTPUT->set_env('default_font_size', $RCMAIL->config->get('default_font_size')); +if ($font_size = $RCMAIL->config->get('default_font_size')) { + $OUTPUT->set_env('default_font_size', $font_size); +} // get reference message and set compose mode if ($msg_uid = $COMPOSE['param']['draft_uid']) { |