From f3d0aaee55608cbe997e8b8186790e95616d75df Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 25 Jan 2008 20:06:22 +0000 Subject: [PATCH] Require PHP 4.3 git-svn-id: http://svn.automattic.com/wordpress/trunk@6662 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-settings.php b/wp-settings.php index 60fd025d3..40b00ea30 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -87,8 +87,8 @@ $PHP_SELF = $_SERVER['PHP_SELF']; if ( empty($PHP_SELF) ) $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace("/(\?.*)?$/",'',$_SERVER["REQUEST_URI"]); -if ( version_compare( '4.2', phpversion(), '>' ) ) { - die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.2.' ); +if ( version_compare( '4.3', phpversion(), '>' ) ) { + die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.3.' ); } if ( !extension_loaded('mysql') && !file_exists(ABSPATH . 'wp-content/db.php') )