|
From: Jonathan H. <the...@us...> - 2002-02-26 16:35:05
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv4180/admin
Modified Files:
page_header_admin.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_admin.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/page_header_admin.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** page_header_admin.php 1 Jan 2002 12:44:04 -0000 1.9
--- page_header_admin.php 26 Feb 2002 16:35:02 -0000 1.10
***************
*** 161,165 ****
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");
--- 161,165 ----
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");
***************
*** 168,170 ****
$template->pparse("header");
! ?>
\ No newline at end of file
--- 168,170 ----
$template->pparse("header");
! ?>
|