Changeset 2529

Show
Ignore:
Timestamp:
04/13/05 16:36:46 (4 years ago)
Author:
ryan
Message:

Send 304 if If-Modified-Since is >= the most rcent post time. http://mosquito.wordpress.org/view.php?id=582 Props: dougal

Files:

Legend:

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

    r2523 r2529  
    135135 
    136136    if ( ($client_last_modified && $client_etag) ? 
    137         (($client_last_modified == $wp_last_modified) && ($client_etag == $wp_etag)) : 
    138         (($client_last_modified == $wp_last_modified) || ($client_etag == $wp_etag)) ) { 
     137        ((strtotime($client_last_modified) >= strtotime($wp_last_modified)) && ($client_etag == $wp_etag)) : 
     138        ((strtotime($client_last_modified) >= strtotime($wp_last_modified)) || ($client_etag == $wp_etag)) ) { 
    139139        if ( preg_match('/cgi/',php_sapi_name()) ) { 
    140140            header('Status: 304 Not Modified');