From 6041a083472f5df7e1a97f47076265854ef09a9b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 8 Aug 2019 12:54:56 +0000 Subject: [PATCH] Bootstrap/Load: Change "Insufficient Requirements" `wp_die()` heading to "Requirements Not Met", which is more appropriate for the context it's used in. Props yoavf. Fixes #47575. Built from https://develop.svn.wordpress.org/trunk@45770 git-svn-id: http://core.svn.wordpress.org/trunk@45581 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/install.php | 2 +- wp-includes/load.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/install.php b/wp-admin/install.php index 472e6b77a0..60ae4d33dc 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -261,7 +261,7 @@ if ( ! $mysql_compat && ! $php_compat ) { if ( ! $mysql_compat || ! $php_compat ) { display_header(); - die( '

' . __( 'Insufficient Requirements' ) . '

' . $compat . '

' ); + die( '

' . __( 'Requirements Not Met' ) . '

' . $compat . '

' ); } if ( ! is_string( $wpdb->base_prefix ) || '' === $wpdb->base_prefix ) { diff --git a/wp-includes/load.php b/wp-includes/load.php index 86aebead6c..f9455eed7d 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -150,7 +150,7 @@ function wp_check_php_mysql_versions() { ); wp_die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ), - __( 'Insufficient Requirements' ), + __( 'Requirements Not Met' ), $args ); exit( 1 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f46ad1a754..034cc856c7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45769'; +$wp_version = '5.3-alpha-45770'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.