Make WordPress Core

Changeset 2579


Ignore:
Timestamp:
05/03/2005 04:32:40 AM (21 years ago)
Author:
matt
Message:

Possible fix for http://mosquito.wordpress.org/view.php?id=1275

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-blog-header.php

    r2534 r2579  
    135135
    136136    if ( $client_last_modified && $client_etag ) {
    137         if ( (strtotime($client_last_modified) <= strtotime($wp_last_modified)) || ($client_etag == $wp_etag) ) {
     137        if ( (strtotime($client_last_modified) >= strtotime($wp_last_modified)) || ($client_etag == $wp_etag) ) {
    138138            if ( preg_match('/cgi/',php_sapi_name()) ) {
    139139                 header('Status: 304 Not Modified');
Note: See TracChangeset for help on using the changeset viewer.