Changeset 449 in subversion


Ignore:
Timestamp:
Jan 7, 2007 1:14:08 PM (6 years ago)
Author:
thomasb
Message:

Applied patch for preview caching (closes #1484186)

Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r440 r449  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42007/01/07 (thomasb) 
     5---------- 
     6- Applied patch for preview caching (closes #1484186) 
     7- Added Thai localization files 
    38 
    492006/12/29 (thomasb) 
  • trunk/roundcubemail/program/steps/mail/show.inc

    r419 r449  
    2424$PRINT_MODE = $_action=='print' ? TRUE : FALSE; 
    2525 
    26 // allow this request to be cached 
    27 send_future_expire_header(); 
     26// allow caching, unless remote images are present 
     27if ((bool)get_input_value('_safe', RCUBE_INPUT_GET)) 
     28  send_nocacheing_headers(); 
     29else 
     30  send_future_expire_header(); 
    2831 
    2932// similar code as in program/steps/mail/get.inc 
Note: See TracChangeset for help on using the changeset viewer.