From 5c4f21c4fe108dc610f27613f66a2f7cc75de513 Mon Sep 17 00:00:00 2001 From: westi Date: Sat, 21 Feb 2009 17:22:18 +0000 Subject: [PATCH] Remove version check against PHP 4.3.0 as this is the minimum version for WordPress. Fixes #9204 for trunk prop filosofo git-svn-id: http://svn.automattic.com/wordpress/trunk@10617 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 31f2e09de..067d66ebb 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1456,10 +1456,7 @@ function status_header( $header ) { if ( function_exists( 'apply_filters' ) ) $status_header = apply_filters( 'status_header', $status_header, $header, $text, $protocol ); - if ( version_compare( phpversion(), '4.3.0', '>=' ) ) - return @header( $status_header, true, $header ); - else - return @header( $status_header ); + return @header( $status_header, true, $header ); } /**