summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosef Šimánek <josef.simanek@gmail.com>2015-04-12 22:35:57 +0200
committerJulien Pauli <jpauli@php.net>2015-05-12 09:53:17 +0200
commit413d23f6f0d5e56bda3c01d3951590c05ed4d7fc (patch)
tree2ad4c30167aa4275ccccd1bfdb5d9828b222834a
parent0be37148ad3853ef0fa70f3aa7c4d0a2a46b9e25 (diff)
downloadphp-git-413d23f6f0d5e56bda3c01d3951590c05ed4d7fc.tar.gz
Remove MSIE 5-specific Cache-Control fields.
reverts 04daa55
-rw-r--r--ext/session/session.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/session/session.c b/ext/session/session.c
index 71d4cd133f..70adf8e1ac 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -1216,7 +1216,7 @@ CACHE_LIMITER_FUNC(private_no_expire) /* {{{ */
{
char buf[MAX_STR + 1];
- snprintf(buf, sizeof(buf), "Cache-Control: private, max-age=" ZEND_LONG_FMT ", pre-check=" ZEND_LONG_FMT, PS(cache_expire) * 60, PS(cache_expire) * 60); /* SAFE */
+ snprintf(buf, sizeof(buf), "Cache-Control: private, max-age=" ZEND_LONG_FMT, PS(cache_expire) * 60); /* SAFE */
ADD_HEADER(buf);
last_modified();
@@ -1234,8 +1234,8 @@ CACHE_LIMITER_FUNC(nocache) /* {{{ */
{
ADD_HEADER("Expires: Thu, 19 Nov 1981 08:52:00 GMT");
- /* For HTTP/1.1 conforming clients and the rest (MSIE 5) */
- ADD_HEADER("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
+ /* For HTTP/1.1 conforming clients */
+ ADD_HEADER("Cache-Control: no-store, no-cache, must-revalidate");
/* For HTTP/1.0 conforming clients */
ADD_HEADER("Pragma: no-cache");