Upgrade/Install: Correctly internationalise error messages during config setup.
Fixes #43997 Built from https://develop.svn.wordpress.org/trunk@43205 git-svn-id: http://core.svn.wordpress.org/trunk@43034 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
35d5911ae8
commit
bd9b25afbb
|
@ -273,12 +273,12 @@ switch ( $step ) {
|
|||
$tryagain_link = '</p><p class="step"><a href="' . $step_1 . '" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try again' ) . '</a>';
|
||||
|
||||
if ( empty( $prefix ) ) {
|
||||
wp_die( __( '<strong>ERROR</strong>: "Table Prefix" must not be empty.' . $tryagain_link ) );
|
||||
wp_die( __( '<strong>ERROR</strong>: "Table Prefix" must not be empty.' ) . $tryagain_link );
|
||||
}
|
||||
|
||||
// Validate $prefix: it can only contain letters, numbers and underscores.
|
||||
if ( preg_match( '|[^a-z0-9_]|i', $prefix ) ) {
|
||||
wp_die( __( '<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.' . $tryagain_link ) );
|
||||
wp_die( __( '<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.' ) . $tryagain_link );
|
||||
}
|
||||
|
||||
// Test the db connection.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-43203';
|
||||
$wp_version = '5.0-alpha-43205';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue