Use ' not " so we don't expand. Fixes #5546 props takayukister.
git-svn-id: http://svn.automattic.com/wordpress/trunk@6522 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5104e0dad0
commit
42def106d2
|
@ -203,7 +203,7 @@ if ( !empty($wpdb->error) )
|
|||
$prefix = $wpdb->set_prefix($table_prefix);
|
||||
|
||||
if ( is_wp_error($prefix) )
|
||||
wp_die("<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.");
|
||||
wp_die('<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.');
|
||||
|
||||
if ( file_exists(ABSPATH . 'wp-content/object-cache.php') )
|
||||
require_once (ABSPATH . 'wp-content/object-cache.php');
|
||||
|
|
Loading…
Reference in New Issue