Changeset 1670 in subversion


Ignore:
Timestamp:
Aug 21, 2008 3:47:35 PM (5 years ago)
Author:
alec
Message:
  • Add Content-Length header while attachments downloading (#1484256)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r1669 r1670  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42008/08/21 (alec) 
     5---------- 
     6- Add Content-Length header while attachments downloading (#1484256) 
     7- Fix In-Reply-To and References headers when composing saved draft  
     8  message (#1485288) 
     9- Removed PHP4 class constructors 
     10- Fix html message charset conversion for charsets with underline (#1485287)  
    311 
    4122008/08/21 (estadtherr) 
  • trunk/roundcubemail/program/steps/mail/get.inc

    r1603 r1670  
    101101    } 
    102102    else { 
     103      header(sprintf('Content-Length: %d', $part->size)); 
    103104      header(sprintf('Content-Disposition: %s; filename="%s";', 
    104105                     $_GET['_download'] ? 'attachment' : 'inline', 
Note: See TracChangeset for help on using the changeset viewer.