Ignore:
Timestamp:
07/03/12 10:53:02 (12 years ago)
Author:
brunocosta
Message:

Ticket #2930 - Trata caracteres especiais que são escapado incorretamente pelo javascript.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.3/expressoMail1_2/inc/class.imap_functions.inc.php

    r6657 r6702  
    20852085                return $return; 
    20862086        } 
    2087          
     2087 
    20882088        function send_mail($params) 
    20892089        { 
     
    23622362                        foreach($forwarding_attachments as $forwarding_attachment) 
    23632363                        { 
    2364                                         $file_description = unserialize(rawurldecode($forwarding_attachment)); 
     2364                             
     2365                                        $forwarding_attachment = ereg_replace('%u([[:alnum:]]{4})', '_',rawurldecode($forwarding_attachment)); 
     2366                                        $file_description = unserialize($forwarding_attachment); 
    23652367                                        $tmp = array_values($file_description); 
    23662368                                        foreach($file_description as $i => $descriptor){ 
Note: See TracChangeset for help on using the changeset viewer.