- Don't consider \Noselect flag when building folders tree (#1488004)

pull/1/head
alecpl 13 years ago
parent 854fbf6d23
commit 485c69d812

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Don't consider \Noselect flag when building folders tree (#1488004)
- Fix sorting autocomplete results (#1488084)
- Add option to set session name (#1486433)
- Add option to skip alternative email addresses in autocompletion

@ -1281,11 +1281,6 @@ function rcmail_build_folder_tree(&$arrFolders, $folder, $delm='/', $path='')
$path .= $prefix.$currentFolder;
if (!isset($arrFolders[$currentFolder])) {
// Check \Noselect attribute (if attributes are in cache)
if (!$virtual && ($attrs = $RCMAIL->imap->mailbox_attributes($path))) {
$virtual = in_array('\\Noselect', $attrs);
}
$arrFolders[$currentFolder] = array(
'id' => $path,
'name' => rcube_charset_convert($currentFolder, 'UTF7-IMAP'),

Loading…
Cancel
Save