diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-11-15 09:40:41 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-11-15 09:40:41 +0100 |
commit | 07280e764357fe844c18beb9ada772956735b49e (patch) | |
tree | 0a84644bba6dea1a2ec461c06e6bd4b0d68b1eaf | |
parent | 409b64934605d583ddc569570762da8adcdd5930 (diff) |
Remove reference to non-existing option 'default_folders'
-rw-r--r-- | program/lib/Roundcube/rcube_config.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/program/lib/Roundcube/rcube_config.php b/program/lib/Roundcube/rcube_config.php index afe13e879..53409f26f 100644 --- a/program/lib/Roundcube/rcube_config.php +++ b/program/lib/Roundcube/rcube_config.php @@ -39,7 +39,6 @@ class rcube_config */ private $legacy_props = array( // new name => old name - 'default_folders' => 'default_imap_folders', 'mail_pagesize' => 'pagesize', 'addressbook_pagesize' => 'pagesize', 'reply_mode' => 'top_posting', @@ -143,10 +142,6 @@ class rcube_config foreach (array('drafts_mbox', 'junk_mbox', 'sent_mbox', 'trash_mbox') as $folder) $this->prop[$folder] = rcube_charset::convert($this->prop[$folder], RCUBE_CHARSET, 'UTF7-IMAP'); - if (!empty($this->prop['default_folders'])) - foreach ($this->prop['default_folders'] as $n => $folder) - $this->prop['default_folders'][$n] = rcube_charset::convert($folder, RCUBE_CHARSET, 'UTF7-IMAP'); - // set PHP error logging according to config if ($this->prop['debug_level'] & 1) { ini_set('log_errors', 1); |