diff --git a/core.php b/core.php index 32fb66f595..03c13c6051 100644 --- a/core.php +++ b/core.php @@ -159,9 +159,9 @@ function microtime_float() { if ( isset( $g_allow_browser_cache ) && ON == $g_allow_browser_cache ) { switch ( $t_browser_name ) { - #case 'IE': - # header( 'Cache-Control: private, proxy-revalidate' ); - # break; + case 'IE': + header( 'Cache-Control: private, proxy-revalidate' ); + break; default: header( 'Cache-Control: private, must-revalidate' ); break; @@ -172,6 +172,7 @@ function microtime_float() { } header( 'Expires: ' . gmdate( 'D, d M Y H:i:s \G\M\T', time() ) ); + header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s \G\M\T', time() ) ); # SEND USER-DEFINED HEADERS foreach( config_get( 'custom_headers' ) as $t_header ) {