From 4ef12c78146e782e07092892e84b007aae57f128 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 13 Oct 2015 17:36:25 +0000 Subject: [PATCH] Correct the error message displayed on setup when `wp-config-sample.php` does not exist. Props bradparbs. Fixes #23247. Built from https://develop.svn.wordpress.org/trunk@35143 git-svn-id: http://core.svn.wordpress.org/trunk@35109 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/setup-config.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php index 01498af28c..e94dc6bc2d 100644 --- a/wp-admin/setup-config.php +++ b/wp-admin/setup-config.php @@ -46,7 +46,7 @@ if ( file_exists( ABSPATH . 'wp-config-sample.php' ) ) elseif ( file_exists( dirname( ABSPATH ) . '/wp-config-sample.php' ) ) $config_file = file( dirname( ABSPATH ) . '/wp-config-sample.php' ); else - wp_die( __( 'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.' ) ); + wp_die( __( 'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file to your WordPress installation.' ) ); // Check if wp-config.php has been created if ( file_exists( ABSPATH . 'wp-config.php' ) ) diff --git a/wp-includes/version.php b/wp-includes/version.php index 7f660f0fec..9c3b59e20a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35142'; +$wp_version = '4.4-alpha-35143'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.