diff options
author | alecpl <alec@alec.pl> | 2008-12-06 18:52:18 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-12-06 18:52:18 +0000 |
commit | 0b5539e3dc4e9f1f651defc9633d284ed3a950b5 (patch) | |
tree | 6cdec13e001d9c05eae7884d2bd7b5bd576ca7d5 /program/include/rcube_config.php | |
parent | 9c705b72b8a2f9297d8fa7f3d967e320cfe5bb45 (diff) |
- Fix sorting of folders with more than 2 levels (#1485569)
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r-- | program/include/rcube_config.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index 1b1594919..790340702 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -75,12 +75,13 @@ class rcube_config $this->prop['log_dir'] = $this->prop['log_dir'] ? unslashify($this->prop['log_dir']) : INSTALL_PATH . 'logs'; $this->prop['temp_dir'] = $this->prop['temp_dir'] ? unslashify($this->prop['temp_dir']) : INSTALL_PATH . 'temp'; - // fix default imap folders encode - foreach (Array('drafts_mbox', 'junk_mbox', 'sent_mbox', 'trash_mbox') as $folder) + // fix default imap folders encoding + foreach (array('drafts_mbox', 'junk_mbox', 'sent_mbox', 'trash_mbox') as $folder) $this->prop[$folder] = rcube_charset_convert($this->prop[$folder], RCMAIL_CHARSET, 'UTF-7'); - foreach ($this->prop['default_imap_folders'] as $n => $folder) - $this->prop['default_imap_folders'][$n] = rcube_charset_convert($folder, RCMAIL_CHARSET, 'UTF-7'); + if (!empty($this->prop['default_imap_folders'])) + foreach ($this->prop['default_imap_folders'] as $n => $folder) + $this->prop['default_imap_folders'][$n] = rcube_charset_convert($folder, RCMAIL_CHARSET, 'UTF-7'); // set PHP error logging according to config if ($this->prop['debug_level'] & 1) { |