From 3044ae271e492412398ca4bd395329012dc14fe7 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 19 May 2008 08:09:38 +0000 Subject: -added flag_for_deletion in user prefs --- program/steps/settings/func.inc | 10 ++++++++++ program/steps/settings/save_prefs.inc | 1 + 2 files changed, 11 insertions(+) (limited to 'program/steps') diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index a3dd758dd..18ec36f2f 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -225,6 +225,16 @@ function rcmail_user_prefs_form($attrib) $input_readdeleted->show($config['read_when_deleted']?1:0)); } + if (!isset($no_override['flag_for_deletion'])) + { + $field_id = 'rcmfd_flag_for_deletion'; + $input_flagfordeletion = new html_checkbox(array('name' => '_flag_for_deletion', 'id' => $field_id, 'value' => 1)); + $out .= sprintf("%s\n", + $field_id, + Q(rcube_label('flagfordeletion')), + $input_flagfordeletion->show($config['flag_for_deletion']?1:0)); + } + // Trash purging on logout if (!isset($no_override['logout_purge'])) { diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index a373961db..f8cf26795 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -28,6 +28,7 @@ $a_user_prefs = array( 'htmleditor' => isset($_POST['_htmleditor']) ? TRUE : FALSE, 'preview_pane' => isset($_POST['_preview_pane']) ? TRUE : FALSE, 'read_when_deleted' => isset($_POST['_read_when_deleted']) ? TRUE : FALSE, + 'flag_for_deletion' => isset($_POST['_flag_for_deletion']) ? TRUE : FALSE, '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, -- cgit v1.2.3