mirror of
git://develop.git.wordpress.org/
synced 2025-01-19 05:38:07 +01:00
your aggregator will love you, part 2: fixing support for 304 :P
git-svn-id: https://develop.svn.wordpress.org/trunk@1037 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
444f7cafec
commit
3c491e4dbc
@ -100,14 +100,14 @@ if (!isset($doing_rss) || !$doing_rss) {
|
||||
$_match_ifnonematch = 0;
|
||||
|
||||
if (!empty($request_headers['If-Modified-Since'])) {
|
||||
if (strtotime($request_headers['If-Modified-Since']) <= strtotime($last_modified_date)) {
|
||||
if (strtotime($request_headers['If-Modified-Since']) >= strtotime($last_modified_date)) {
|
||||
$_match_ifmodifiedsince = 1;
|
||||
} else {
|
||||
$_match_ifmodifiedsince = -1;
|
||||
}
|
||||
}
|
||||
if (!empty($request_headers['If-None-Match'])) {
|
||||
if ($request_headers['If-None-Match'] == md5($last_modified_date)) {
|
||||
if ($request_headers['If-None-Match'] == '"'.md5($last_modified_date).'"') {
|
||||
$_match_ifnonematch = 1;
|
||||
} else {
|
||||
$_match_ifnonematch = -1;
|
||||
@ -115,7 +115,7 @@ if (!isset($doing_rss) || !$doing_rss) {
|
||||
}
|
||||
|
||||
// if one element is present but doesn't match the header, the -1 makes this <=0
|
||||
if ($_match_ifmodifiedsince + $_match_ifnonematch) {
|
||||
if ($_match_ifmodifiedsince + $_match_ifnonematch > 0) {
|
||||
header("HTTP/1.1 304 Not Modified\n\n");
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user