mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
1461ae9e4c
Currently IE6-8 will refuse to download files over HTTPS with default Framework settings. Currently the HTTP::add_cache_headers competely overrides Cache-Control headers on each request, so there is no way to inject custom headers from the API-consuning methods. Also of note: adding no-store header also fixes the issue but will prevent proxies from caching the request body (which they do when using no-cache). So the setting max-age to some low number is a better choice here.