Changeset d9641b0 in github


Ignore:
Timestamp:
May 27, 2011 9:13:32 AM (2 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
55150f8
Parents:
5164670
Message:
  • Allow setting special folder with "<" character
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/steps/settings/save_prefs.inc

    rd7344819 rd9641b0  
    8181  case 'addressbook': 
    8282    $a_user_prefs = array( 
    83       'default_addressbook' => get_input_value('_default_addressbook', RCUBE_INPUT_POST), 
     83      'default_addressbook' => get_input_value('_default_addressbook', RCUBE_INPUT_POST, true), 
    8484    ); 
    8585 
     
    100100  case 'folders': 
    101101    $a_user_prefs = array( 
    102       'drafts_mbox' => get_input_value('_drafts_mbox', RCUBE_INPUT_POST), 
    103       'sent_mbox'   => get_input_value('_sent_mbox', RCUBE_INPUT_POST), 
    104       'junk_mbox'   => get_input_value('_junk_mbox', RCUBE_INPUT_POST), 
    105       'trash_mbox'  => get_input_value('_trash_mbox', RCUBE_INPUT_POST), 
     102      'drafts_mbox' => get_input_value('_drafts_mbox', RCUBE_INPUT_POST, true), 
     103      'sent_mbox'   => get_input_value('_sent_mbox', RCUBE_INPUT_POST, true), 
     104      'junk_mbox'   => get_input_value('_junk_mbox', RCUBE_INPUT_POST, true), 
     105      'trash_mbox'  => get_input_value('_trash_mbox', RCUBE_INPUT_POST, true), 
    106106    ); 
    107107 
Note: See TracChangeset for help on using the changeset viewer.