diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-10-10 08:35:04 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-10-10 08:35:04 +0200 |
commit | 0054f7a5bf694ee85ad9423084ab5c3a7aed7426 (patch) | |
tree | 51860e2ea85e769710635d68fcc8cb894924c0ea /program/steps/settings/save_prefs.inc | |
parent | 659c7b848f6c20eecc712b04210bd865891afd71 (diff) |
Fix sig_above setting, broken in 651c7b6e9df38a3b7cdf6daebed39021d88c3bea
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index dc149929e..d1627ecea 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -84,7 +84,7 @@ switch ($CURR_SECTION) 'show_sig' => isset($_POST['_show_sig']) ? intval($_POST['_show_sig']) : 1, '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']) && $_POST['_reply_mode'] < 1, + 'sig_above' => !empty($_POST['_sig_above']) && $_POST['_reply_mode'] > 0, 'default_font' => get_input_value('_default_font', RCUBE_INPUT_POST), 'forward_attachment' => !empty($_POST['_forward_attachment']), ); |