diff options
author | alecpl <alec@alec.pl> | 2010-10-06 17:15:38 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-06 17:15:38 +0000 |
commit | 868deb5dabdc4d63210e4f53a2a80a904247af6a (patch) | |
tree | e5391d3273ca70bc7a4727ccc8db4bcdc401c2c2 /program/steps/settings/save_prefs.inc | |
parent | ace511a771656c983046919333cee501339c98a1 (diff) |
- Make htmleditor option behaviour consistent, add option to use HTML on reply to HTML message (#1485840)
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index 4621427ee..ae3d6d704 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -58,11 +58,10 @@ switch ($CURR_SECTION) 'default_charset' => get_input_value('_default_charset', RCUBE_INPUT_POST), ); - break; case 'compose': $a_user_prefs = array( - 'htmleditor' => isset($_POST['_htmleditor']) ? TRUE : FALSE, + 'htmleditor' => intval($_POST['_htmleditor']), 'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0, 'mime_param_folding' => isset($_POST['_mime_param_folding']) ? intval($_POST['_mime_param_folding']) : 0, 'force_7bit' => isset($_POST['_force_7bit']) ? TRUE : FALSE, |