mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-25 17:51:27 +01:00
Do a therapuetic double strip on HTTP_IF_MODIFIED_SINCE since we code in an imperfect world. fixes #2597
git-svn-id: http://svn.automattic.com/wordpress/trunk@3682 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ffda0db982
commit
a8434c8f49
@ -245,7 +245,8 @@ class WP {
|
|||||||
@header("ETag: $wp_etag");
|
@header("ETag: $wp_etag");
|
||||||
|
|
||||||
// Support for Conditional GET
|
// Support for Conditional GET
|
||||||
if (isset($_SERVER['HTTP_IF_NONE_MATCH'])) $client_etag = stripslashes($_SERVER['HTTP_IF_NONE_MATCH']);
|
if (isset($_SERVER['HTTP_IF_NONE_MATCH']))
|
||||||
|
$client_etag = stripslashes(stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
|
||||||
else $client_etag = false;
|
else $client_etag = false;
|
||||||
|
|
||||||
$client_last_modified = trim( $_SERVER['HTTP_IF_MODIFIED_SINCE']);
|
$client_last_modified = trim( $_SERVER['HTTP_IF_MODIFIED_SINCE']);
|
||||||
|
Loading…
Reference in New Issue
Block a user