don't translate months and weekdays in date strings PLUS bugfix for 304 Not Modified on PHP CGI

git-svn-id: http://svn.automattic.com/wordpress/trunk@1338 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
michelvaldrighi 2004-05-21 22:33:47 +00:00
parent 988a4ce48e
commit 86fdd896ee
1 changed files with 12 additions and 4 deletions

View File

@ -82,7 +82,7 @@ if (!isset($doing_rss) || !$doing_rss) {
} else {
// We're showing a feed, so WP is indeed the only thing that last changed
$wp_last_modified = mysql2date('D, d M Y H:i:s', get_lastpostmodified('GMT')).' GMT';
$wp_last_modified = mysql2date('D, d M Y H:i:s', get_lastpostmodified('GMT'), 0).' GMT';
$wp_etag = '"'.md5($wp_last_modified).'"';
@header('Last Modified: '.$wp_last_modified);
@header('ETag: '.$wp_etag);
@ -97,9 +97,17 @@ if (!isset($doing_rss) || !$doing_rss) {
if ( ($client_last_modified && $client_etag) ?
(($client_last_modified == $wp_last_modified) && ($client_etag == $wp_etag)) :
(($client_last_modified == $wp_last_modified) || ($client_etag == $wp_etag)) ) {
header('HTTP/1.1 304 Not Modified');
echo "\r\n\r\n";
exit;
if ( preg_match('/cgi/',php_sapi_name()) ) {
header('HTTP/1.1 304 Not Modified');
echo "\r\n\r\n";
exit;
} else {
if (version_compare(phpversion(),'4.3.0','>=')) {
header('Not Modified', TRUE, 304);
} else {
header('HTTP/1.x 304 Not Modified');
}
}
}
}