- Fix locked folder rename option on servers supporting RFC2086 only (#1488089)

release-0.7
alecpl 15 years ago
parent 784c0cf54c
commit 30f50556c1

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix locked folder rename option on servers supporting RFC2086 only (#1488089)
- Trigger 'new_messages' hook for all checked folders (#1488083)
- Fix session race conditions when composing new messages
- Fix encoding of LDAP contacts identifiers (#1488079)

@ -3500,7 +3500,8 @@ class rcube_imap
}
if (!empty($options['rights'])) {
$options['norename'] = !in_array('x', $options['rights']);
$options['norename'] = !in_array('x', $options['rights']) && !in_array('d', $options['rights']);
if (!$options['noselect']) {
$options['noselect'] = !in_array('r', $options['rights']);
}

Loading…
Cancel
Save