From 4a25f9862099044143b5fa54c70c3b718c60bf05 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Tue, 6 Jul 2004 18:20:11 +0000 Subject: [PATCH] http://mosquito.wordpress.org/bug_view_page.php?bug_id=0000133 Stop execution after we 304 the client. git-svn-id: http://svn.automattic.com/wordpress/trunk@1455 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-blog-header.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-blog-header.php b/wp-blog-header.php index c9e0e2907d..db0c0a7aa3 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -108,6 +108,7 @@ if ( !isset($doing_rss) || !$doing_rss ) { } else { header('HTTP/1.x 304 Not Modified'); } + exit; } } }