From 4647e1bbb5beba82605695c4dc989ca867e53244 Mon Sep 17 00:00:00 2001 From: thomascube Date: Thu, 23 Mar 2006 22:32:47 +0000 Subject: Started implementing search function --- program/steps/settings/func.inc | 9 +++++++++ program/steps/settings/save_prefs.inc | 1 + 2 files changed, 10 insertions(+) (limited to 'program/steps/settings') diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index ccc7871cc..a22ac9ae6 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -78,6 +78,7 @@ function rcmail_user_prefs_form($attrib) $select_timezone->add('(GMT -5:00) Eastern Time (US/Canada), Bogota, Lima', '-5'); $select_timezone->add('(GMT -4:00) Atlantic Time (Canada), Caracas, La Paz', '-4'); $select_timezone->add('(GMT -3:00) Brazil, Buenos Aires, Georgetown', '-3'); + $select_timezone->add('(GMT -3:30) Nfld Time (Canada), Nfld, S. Labador', '-3.5'); $select_timezone->add('(GMT -2:00) Mid-Atlantic', '-2'); $select_timezone->add('(GMT -1:00) Azores, Cape Verde Islands', '-1'); $select_timezone->add('(GMT) Western Europe, London, Lisbon, Casablanca', '0'); @@ -108,6 +109,14 @@ function rcmail_user_prefs_form($attrib) $select_timezone->show($CONFIG['timezone'])); + $field_id = 'rcmfd_dst'; + $input_dst = new checkbox(array('name' => '_dst_active', 'id' => $field_id, 'value' => 1)); + $out .= sprintf("%s\n", + $field_id, + rep_specialchars_output(rcube_label('dstactive')), + $input_dst->show($CONFIG['dst_active'])); + + // show page size selection $field_id = 'rcmfd_pgsize'; $input_pagesize = new textfield(array('name' => '_pagesize', 'id' => $field_id, 'size' => 5)); diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index d78acbdb4..81ffbe80a 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -25,6 +25,7 @@ if (!is_array($a_user_prefs)) $a_user_prefs['timezone'] = isset($_POST['_timezone']) ? floatval($_POST['_timezone']) : $CONFIG['timezone']; +$a_user_prefs['dst_active'] = isset($_POST['_dst_active']) ? TRUE : FALSE; $a_user_prefs['pagesize'] = is_numeric($_POST['_pagesize']) ? (int)$_POST['_pagesize'] : $CONFIG['pagesize']; $a_user_prefs['prefer_html'] = isset($_POST['_prefer_html']) ? TRUE : FALSE; -- cgit v1.2.3