Remove version check against PHP 4.3.0 as this is the minimum version for WordPress. Fixes #9204 for 2.7 branch prop filosofo.

git-svn-id: http://svn.automattic.com/wordpress/branches/2.7@10618 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-02-21 17:25:02 +00:00
parent 1c38c52b64
commit 7a92c50bf0

View File

@ -1388,10 +1388,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 );
}
/**