From d1174c0013283b8dc16c5349eac995fe2a1039ad Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 26 Oct 2007 16:50:19 +0000 Subject: Don't use $wpmuBaseTablePrefix any more, use $wpdb->base_prefix, props lunabyte, fixes #479 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1134 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wp-settings.php') diff --git a/wp-settings.php b/wp-settings.php index f790af8..442fe50 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -129,7 +129,7 @@ require (ABSPATH . WPINC . '/functions.php'); require_wp_db(); // $table_prefix is deprecated as of 2.1 -$wpdb->prefix = $table_prefix; +$wpdb->prefix = $wpdb->base_prefix = $table_prefix; if ( preg_match('|[^a-z0-9_]|i', $wpdb->prefix) && !file_exists(ABSPATH . 'wp-content/db.php') ) wp_die("ERROR: $table_prefix in wp-config.php can only contain numbers, letters, and underscores."); -- cgit