X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/96bc8e88cf39086a9e0a883b8e2c311fe82a5e97..46588ee871246a923d972538dbc93b26f4fda932:/wp-includes/ms-files.php diff --git a/wp-includes/ms-files.php b/wp-includes/ms-files.php index e7ab0a4c..de6d15db 100644 --- a/wp-includes/ms-files.php +++ b/wp-includes/ms-files.php @@ -57,7 +57,7 @@ header( "Last-Modified: $last_modified GMT" ); header( 'ETag: ' . $etag ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + 100000000 ) . ' GMT' ); -// Support for Conditional GET +// Support for Conditional GET - use stripslashes to avoid formatting.php dependency $client_etag = isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) ? stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) : false; if( ! isset( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) @@ -80,4 +80,3 @@ if ( ( $client_last_modified && $client_etag ) // If we made it this far, just serve the file readfile( $file ); -?>