Changeset 4741


Ignore:
Timestamp:
07/14/11 14:35:45 (13 years ago)
Author:
roberto.santosjunior
Message:

Ticket #1820 - Corrigido o descompartilhamento com pastas acentuadas. r4579

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/class.imap_functions.inc.php

    r4739 r4741  
    38943894                        foreach ($remove_share as $index=>$uid) 
    38953895                        { 
    3896                         if (is_array($mailboxes_list)) 
    3897                         { 
    3898                         foreach ($mailboxes_list as $key => $val) 
    3899                         { 
    3900                         $folder = str_replace($serverString, "", imap_utf7_decode($val->name)); 
    3901                                                 imap_setacl ($mbox_stream, $folder, "$uid", ""); 
    3902                         } 
    3903                         } 
     3896                            if (is_array($mailboxes_list)) 
     3897                            { 
     3898                                foreach ($mailboxes_list as $key => $val) 
     3899                                { 
     3900                                    $folder = str_replace($serverString, "", imap_utf7_decode($val->name)); 
     3901                                    $folder = str_replace("&-", "&", $folder); 
     3902                                    imap_setacl ($mbox_stream, $folder, "$uid", ""); 
     3903                                } 
     3904                            } 
    39043905                        } 
    39053906                } 
Note: See TracChangeset for help on using the changeset viewer.