|
From: Jonathan H. <the...@us...> - 2002-02-26 16:35:06
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv4180/includes
Modified Files:
page_header.php
Log Message:
Added false for the optional replace parameter of the header for Cache-Control.. This might actually fix some issues with gzip compression and win98/IIS...
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.98
retrieving revision 1.99
diff -C2 -r1.98 -r1.99
*** page_header.php 12 Feb 2002 03:04:19 -0000 1.98
--- page_header.php 26 Feb 2002 16:35:02 -0000 1.99
***************
*** 469,473 ****
header ("Cache-Control: no-store, no-cache, must-revalidate");
! header ("Cache-Control: pre-check=0, post-check=0, max-age=0");
header ("Pragma: no-cache");
header ("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
--- 469,473 ----
header ("Cache-Control: no-store, no-cache, must-revalidate");
! header ("Cache-Control: pre-check=0, post-check=0, max-age=0", false);
header ("Pragma: no-cache");
header ("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
***************
*** 476,478 ****
$template->pparse("overall_header");
! ?>
\ No newline at end of file
--- 476,478 ----
$template->pparse("overall_header");
! ?>
|