diff --git a/wp-includes/load.php b/wp-includes/load.php index c785128aed..1275acad37 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -397,7 +397,13 @@ function wp_set_wpdb_vars() { if ( is_wp_error( $prefix ) ) { wp_load_translations_early(); - wp_die( __( 'ERROR: $table_prefix in wp-config.php can only contain numbers, letters, and underscores.' ) ); + wp_die( + /* translators: 1: $table_prefix 2: wp-config.php */ + sprintf( __( 'ERROR: %1$s in %2$s can only contain numbers, letters, and underscores.' ), + '$table_prefix', + 'wp-config.php' + ) + ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 06d4e069a4..a083e2a577 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta4-35631'; +$wp_version = '4.4-beta4-35632'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.