From 68a0c70498ae46b73e8aa37bedb2e57d7edc50d1 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 19 Jun 2004 17:34:13 +0000 Subject: [PATCH] Last-modified should not have a space in it. git-svn-id: https://develop.svn.wordpress.org/trunk@1442 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-blog-header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-blog-header.php b/wp-blog-header.php index 23f12c559f..c700942cce 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -92,7 +92,7 @@ if (!isset($doing_rss) || !$doing_rss) { // 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'), 0).' GMT'; $wp_etag = '"'.md5($wp_last_modified).'"'; - @header('Last Modified: '.$wp_last_modified); + @header('Last-Modified: '.$wp_last_modified); @header('ETag: '.$wp_etag); @header ('X-Pingback: ' . get_settings('siteurl') . '/xmlrpc.php');