mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-23 00:06:59 +01:00
Fix folder creation under public namespace root (#1488665)
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
CHANGELOG Roundcube Webmail
|
||||
===========================
|
||||
|
||||
- Fix folder creation under public namespace root (#1488665)
|
||||
- Fix so "Edit as new" on draft creates a new message (#1488687)
|
||||
- Fix invalid error message on deleting mail from read only folder (#1488694)
|
||||
- Fix error where session wasn't updated after folder rename/delete (#1488692)
|
||||
|
||||
@@ -3297,11 +3297,8 @@ class rcube_imap extends rcube_storage
|
||||
}
|
||||
|
||||
// Get folder rights (MYRIGHTS)
|
||||
if ($acl && !$options['noselect']) {
|
||||
// skip shared roots
|
||||
if (!$options['is_root'] || $options['namespace'] == 'personal') {
|
||||
$options['rights'] = (array)$this->my_rights($folder);
|
||||
}
|
||||
if ($acl && ($rights = $this->my_rights($folder))) {
|
||||
$options['rights'] = $rights;
|
||||
}
|
||||
|
||||
// Set 'norename' flag
|
||||
|
||||
Reference in New Issue
Block a user