diff options
author | alecpl <alec@alec.pl> | 2008-04-11 13:34:19 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-11 13:34:19 +0000 |
commit | eaa39477bd53130e68bfb26d63308cc9b6af9369 (patch) | |
tree | 84e278a4b3e813693dc6b9a92232434da0daca40 /program/steps/settings/save_prefs.inc | |
parent | cb6b51ee7647924403a81cf5b9443936f7c5a901 (diff) |
#1483863: empty trash and expunge inbox on logout
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index caa4a49e5..8dae7bc47 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -27,7 +27,9 @@ $a_user_prefs = array( 'prefer_html' => isset($_POST['_prefer_html']) ? TRUE : FALSE, 'htmleditor' => isset($_POST['_htmleditor']) ? TRUE : FALSE, 'preview_pane' => isset($_POST['_preview_pane']) ? TRUE : FALSE, - 'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0 + 'logout_purge' => isset($_POST['_logout_purge']) ? TRUE : FALSE, + 'logout_expunge' => isset($_POST['_logout_expunge']) ? TRUE : FALSE, + 'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0, ); // don't override these parameters |