From b647b1322a5ca69fa07413defae76f681787d930 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Fri, 29 Aug 2008 09:32:48 +0000 Subject: [PATCH] Fix typo in wp-settings.php. Props mictasm, fixes #7638 git-svn-id: https://develop.svn.wordpress.org/trunk@8772 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 4baaa10db2..4ce8437e13 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -101,7 +101,7 @@ if ( empty($PHP_SELF) ) $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace("/(\?.*)?$/",'',$_SERVER["REQUEST_URI"]); if ( version_compare( '4.3', phpversion(), '>' ) ) { - die( sprintf( /*WP_I18N_OLD_PHP*/'Your server is running PHP version %s but WordPress requires at least 4.3.'/*/WP_I18N_OLD_PHP*/, php_version() ) ); + die( sprintf( /*WP_I18N_OLD_PHP*/'Your server is running PHP version %s but WordPress requires at least 4.3.'/*/WP_I18N_OLD_PHP*/, phpversion() ) ); } if ( !defined('WP_CONTENT_DIR') )