Changeset 5232 in subversion


Ignore:
Timestamp:
Sep 17, 2011 12:46:31 PM (21 months ago)
Author:
alec
Message:
  • Fix locked folder rename option on servers supporting RFC2086 only (#1488089)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r5228 r5232  
    22=========================== 
    33 
     4- Fix locked folder rename option on servers supporting RFC2086 only (#1488089) 
    45- Trigger 'new_messages' hook for all checked folders (#1488083) 
    56- Fix session race conditions when composing new messages 
  • trunk/roundcubemail/program/include/rcube_imap.php

    r5205 r5232  
    35013501 
    35023502        if (!empty($options['rights'])) { 
    3503             $options['norename'] = !in_array('x', $options['rights']); 
     3503            $options['norename'] = !in_array('x', $options['rights']) && !in_array('d', $options['rights']); 
     3504 
    35043505            if (!$options['noselect']) { 
    35053506                $options['noselect'] = !in_array('r', $options['rights']); 
Note: See TracChangeset for help on using the changeset viewer.