Ticket #34621: 34621.patch
| File 34621.patch, 704 bytes (added by , 11 years ago) |
|---|
-
wp-includes/load.php
397 397 398 398 if ( is_wp_error( $prefix ) ) { 399 399 wp_load_translations_early(); 400 wp_die( __( '<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.' ) ); 400 wp_die( 401 sprintf( 402 /* translators: 1: $table_prefix 2: wp-config.php */ 403 __( '<strong>ERROR</strong>: %1$s in %2$s can only contain numbers, letters, and underscores.' ), 404 '<code>$table_prefix</code>', 405 '<code>wp-config.php</code>' 406 ); 407 ); 401 408 } 402 409 } 403 410