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.