diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-26 18:20:28 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-26 18:20:28 +0200 |
commit | 651c7b6e9df38a3b7cdf6daebed39021d88c3bea (patch) | |
tree | bac0d18414e6e4b7a5f2ad7ba37403c5bf5a65b9 /program/steps/settings/save_prefs.inc | |
parent | 4877dbd4d2ca63d7f6b8857abcb4d2f895f2542e (diff) |
Add option to not include original message on reply, rename option top_posting to reply_mode (#1485149)
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index 88fa5298a..dc149929e 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -82,9 +82,9 @@ switch ($CURR_SECTION) 'spellcheck_ignore_nums' => isset($_POST['_spellcheck_ignore_nums']) ? TRUE : FALSE, 'spellcheck_ignore_caps' => isset($_POST['_spellcheck_ignore_caps']) ? TRUE : FALSE, 'show_sig' => isset($_POST['_show_sig']) ? intval($_POST['_show_sig']) : 1, - 'top_posting' => !empty($_POST['_top_posting']), + 'reply_mode' => isset($_POST['_reply_mode']) ? intval($_POST['_reply_mode']) : 0, 'strip_existing_sig' => isset($_POST['_strip_existing_sig']), - 'sig_above' => !empty($_POST['_sig_above']) && !empty($_POST['_top_posting']), + 'sig_above' => !empty($_POST['_sig_above']) && $_POST['_reply_mode'] < 1, 'default_font' => get_input_value('_default_font', RCUBE_INPUT_POST), 'forward_attachment' => !empty($_POST['_forward_attachment']), ); |