From ee8991d497cc32ce35560c1975c16739597d3a13 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 23 May 2003 12:39:05 +0000 Subject: [PATCH] Removed aggresive assumption. git-svn-id: https://develop.svn.wordpress.org/trunk@52 602fd350-edb4-49c9-b593-d223f7449a82 --- blog.header.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blog.header.php b/blog.header.php index ddecc5cc63..26a81829c9 100644 --- a/blog.header.php +++ b/blog.header.php @@ -35,13 +35,15 @@ $b2varstoreset = array('m','p','posts','w','c', 'cat','withcomments','s','search /* Connecting to the db */ dbconnect(); -/* Sending HTTP headers */ +/* Sending HTTP headers +// It is presumptious to think that WP is the only thing that might change on the page. $last_modified_header = mysql2date('D, d M Y H:i:s', get_lastpostdate()); @header ("X-Pingback: $pathserver/xmlrpc.php"); if (!$is_winIE) { @header ("Last-Modified: $last_modified_header"); @header ('ETag: "'.md5($last_modified_header.$pagenow).'"'); } +*/ /* Getting settings from db */ $posts_per_page = get_settings('posts_per_page');