Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@2579 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
matt committed May 3, 2005
1 parent 48d0ec3 commit f49bca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-blog-header.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
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";
Expand Down

0 comments on commit f49bca8

Please sign in to comment.