From f49bca81316ce58a78d2f8bc9971106bb1c8f3e6 Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 3 May 2005 04:32:40 +0000 Subject: [PATCH] Possible fix for http://mosquito.wordpress.org/view.php?id=1275 git-svn-id: http://svn.automattic.com/wordpress/trunk@2579 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-blog-header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-blog-header.php b/wp-blog-header.php index 71512e4516..62cf05d5af 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -134,7 +134,7 @@ if ( !empty($error) && '404' == $error ) { else $client_etag = false; if ( $client_last_modified && $client_etag ) { - if ( (strtotime($client_last_modified) <= strtotime($wp_last_modified)) || ($client_etag == $wp_etag) ) { + if ( (strtotime($client_last_modified) >= strtotime($wp_last_modified)) || ($client_etag == $wp_etag) ) { if ( preg_match('/cgi/',php_sapi_name()) ) { header('Status: 304 Not Modified'); echo "\r\n\r\n";