Ignore:
Timestamp:
11/10/10 16:07:09 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1322 - Data incorreta nas mensagens na caixa de entrada.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/expressoMail1_2/inc/hook_settings.inc.php

    r3414 r3493  
    2020        \**************************************************************************/ 
    2121include_once("fckeditor.php"); 
     22include_once("class.functions.inc.php"); 
    2223$type = isset($_GET['type']) ? $_GET['type']:$GLOBALS['type']; // FIX ME 
    2324 
     
    211212create_check_box('Use shortcuts?','use_shortcuts','n key (Open new message)<br>ESC key (Close tab)<br>i key (print)<br>e key (forward)<br>r key (reply)<br>DELETE key (delete the current message)<br>Ctrl + up (go to previous message)<br>Ctrl + down (go to next message)<br>Shift + up or down (select multiple messages)<br>F9  key (search at catalog)<br>'); 
    212213create_check_box('Auto save draft','auto_save_draft','When you are away from computer it saves automatically the message you are writing'); 
     214 
     215unset($default); 
     216$functions = new functions(); 
     217$zones = $functions->getTimezones(); 
     218$default = array(sprintf("%s", array_search('America/Sao_Paulo', $zones)) => 'America/Sao_Paulo'); 
     219create_select_box('What is your timezone?', 'timezone', $zones, 'The Timezone you\'re in.', $default); 
     220 
    213221$default = array( 
    214222        '65536' => lang('unlimited'), 
Note: See TracChangeset for help on using the changeset viewer.