From 61133b735fa085d34812e2707595c086582e8dbb Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Fri, 12 Jan 2007 21:41:48 +0000 Subject: [PATCH] Use http_response_code for in status_header() on PHP >= 4.3.0 per Ryan's suggestion. relates to #3528 git-svn-id: https://develop.svn.wordpress.org/trunk@4724 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index d06be2f3f6..2b73a180d0 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -816,10 +816,10 @@ function status_header( $header ) { elseif ( 410 == $header ) $text = 'Gone'; -// if ( substr(php_sapi_name(), 0, 3) == 'cgi' ) + if ( version_compare(php_version(), '4.3.0', '>=') ) + @header("HTTP/1.1 $header $text", true, $header); + else @header("HTTP/1.1 $header $text"); -// else -// @header("Status: $header $text"); } function nocache_headers() {