Changeset 2133 for branches/2.0


Ignore:
Timestamp:
03/02/10 15:44:25 (14 years ago)
Author:
niltonneto
Message:

Ticket #886 - Corrigido problema de download de anexo com caracter especial.

Location:
branches/2.0/expressoMail1_2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/expressoMail1_2/inc/gotodownload.php

    r1606 r2133  
    1212        $msg_number = $_GET['msg_number']; 
    1313        $idx_file = $_GET['idx_file']; 
    14         $newfilename = $_GET['newfilename']; 
     14        $newfilename = urldecode($_GET['newfilename']); 
    1515        $msg_part = $_GET['msg_part']; 
    1616        $msg_folder = $_GET['msg_folder']; 
  • branches/2.0/expressoMail1_2/js/common_functions.js

    r1412 r2133  
    209209        } 
    210210        if(new_file_name) 
    211                 params = "&newfilename="+new_file_name; 
     211                params = "&newfilename="+escape(new_file_name); 
    212212        if(encoding) 
    213213                params += "&encoding="+encoding; 
Note: See TracChangeset for help on using the changeset viewer.