From e2edbfc7683982e630772c5b60268d69670edbe4 Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 24 May 2010 17:26:21 +0000 Subject: [PATCH] Added $meta to "wpmu_new_blog" action git-svn-id: http://svn.automattic.com/wordpress/trunk@14844 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index 0fed39a12..f9262ffce 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -839,7 +839,7 @@ function wpmu_create_blog($domain, $path, $title, $user_id, $meta = '', $site_id update_user_meta( $user_id, 'primary_blog', $blog_id ); restore_current_blog(); - do_action( 'wpmu_new_blog', $blog_id, $user_id, $domain, $path, $site_id ); + do_action( 'wpmu_new_blog', $blog_id, $user_id, $domain, $path, $site_id, $meta ); return $blog_id; }