From 42def106d252f33d7874c879ed778885d80722dd Mon Sep 17 00:00:00 2001 From: westi Date: Sat, 29 Dec 2007 09:10:51 +0000 Subject: [PATCH] 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 --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 4345c49d4..14fedff67 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -203,7 +203,7 @@ if ( !empty($wpdb->error) ) $prefix = $wpdb->set_prefix($table_prefix); if ( is_wp_error($prefix) ) - wp_die("ERROR: $table_prefix in wp-config.php can only contain numbers, letters, and underscores."); + wp_die('ERROR: $table_prefix in wp-config.php can only contain numbers, letters, and underscores.'); if ( file_exists(ABSPATH . 'wp-content/object-cache.php') ) require_once (ABSPATH . 'wp-content/object-cache.php');