Edgewall Software

Ticket #1402: nostore.diff

File nostore.diff, 472 bytes (added by pharkas@…, 7 years ago)
  • attachment.py

     
    197197        req.send_header('Content-Type', mime_type) 
    198198        req.send_header('Content-Length', str(length)) 
    199199        req.send_header('Last-Modified', util.http_date(last_modified)) 
     200        req.send_header('Cache-Control', 'no-store') 
    200201        req.end_headers() 
    201202 
    202203        while data: