diff --git src/wp-admin/setup-config.php src/wp-admin/setup-config.php
index f09ecdf6f1..2382357d84 100644
|
|
switch ( $step ) { |
273 | 273 | $tryagain_link = '</p><p class="step"><a href="' . $step_1 . '" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try again' ) . '</a>'; |
274 | 274 | |
275 | 275 | if ( empty( $prefix ) ) { |
276 | | wp_die( __( '<strong>ERROR</strong>: "Table Prefix" must not be empty.' . $tryagain_link ) ); |
| 276 | wp_die( __( '<strong>ERROR</strong>: "Table Prefix" must not be empty.' ) . $tryagain_link ); |
277 | 277 | } |
278 | 278 | |
279 | 279 | // Validate $prefix: it can only contain letters, numbers and underscores. |
280 | 280 | if ( preg_match( '|[^a-z0-9_]|i', $prefix ) ) { |
281 | | wp_die( __( '<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.' . $tryagain_link ) ); |
| 281 | wp_die( __( '<strong>ERROR</strong>: "Table Prefix" can only contain numbers, letters, and underscores.' ) . $tryagain_link ); |
282 | 282 | } |
283 | 283 | |
284 | 284 | // Test the db connection. |