diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-29 19:25:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-29 19:25:19 +0000 |
commit | 5729c22f6f677fd3420eb7ad5e376a56b8e4f22f (patch) | |
tree | 17a7514cdb5788c7609e43e6aa1abe5815bde268 /includes | |
parent | f66606751e738c8d41450749f4046887b8e62333 (diff) | |
download | brdo-5729c22f6f677fd3420eb7ad5e376a56b8e4f22f.tar.gz brdo-5729c22f6f677fd3420eb7ad5e376a56b8e4f22f.tar.bz2 |
- Patch #109941 by morphir: allow the browser to store form fields.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/bootstrap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 308dafc47..43323eb42 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -487,7 +487,7 @@ function drupal_load($type, $name) { function drupal_page_header() { header("Expires: Sun, 19 Nov 1978 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); - header("Cache-Control: no-store, no-cache, must-revalidate"); + header("Cache-Control: store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", FALSE); } |