From 084a14bf0ecf658888a5bb73d859efce34e06c82 Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 11 Jul 2008 11:31:05 +0000 Subject: Fix signup meta information, fixes #674 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1367 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/wpmu-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wp-includes') diff --git a/wp-includes/wpmu-functions.php b/wp-includes/wpmu-functions.php index 406fde9..29cd47a 100644 --- a/wp-includes/wpmu-functions.php +++ b/wp-includes/wpmu-functions.php @@ -1168,7 +1168,7 @@ function wpmu_create_blog($domain, $path, $title, $user_id, $meta = '', $site_id if( $key == 'public' || $key == 'archived' || $key == 'mature' || $key == 'spam' || $key == 'deleted' || $key == 'lang_id' ) { update_blog_status( $blog_id, $key, $value ); } else { - update_option( $blog_id, $key, $value ); + update_option( $key, $value ); } } -- cgit