diff options
author | Thomas B. <thomas@roundcube.net> | 2013-09-16 10:47:24 -0700 |
---|---|---|
committer | Thomas B. <thomas@roundcube.net> | 2013-09-16 10:47:24 -0700 |
commit | 0201298cd8f767389789f7c35897985d4475836a (patch) | |
tree | 49ba49fade3e2dd998a569e1694c5e31ad301af3 /program/steps/settings/save_prefs.inc | |
parent | b5c364273d7b026c0deda2326018aabff8bec73c (diff) | |
parent | 153e455f6566cb7a4349b7f2197e842d6ec9bf90 (diff) |
Merge pull request #118 from Dennis1993/patch-12
Added support for default font size and fix legacy code for default font
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index 3e8b1d17e..717c7ad8c 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -89,6 +89,7 @@ switch ($CURR_SECTION) 'reply_mode' => isset($_POST['_reply_mode']) ? intval($_POST['_reply_mode']) : 0, 'strip_existing_sig' => isset($_POST['_strip_existing_sig']), 'default_font' => get_input_value('_default_font', RCUBE_INPUT_POST), + 'default_font_size' => get_input_value('_default_font_size', RCUBE_INPUT_POST), 'forward_attachment' => !empty($_POST['_forward_attachment']), ); |