From 56e498c51720443a57edf808065196e2be127e66 Mon Sep 17 00:00:00 2001 From: Donncha O Caoimh Date: Mon, 24 May 2010 17:26:21 +0000 Subject: [PATCH] Added $meta to "wpmu_new_blog" action git-svn-id: https://develop.svn.wordpress.org/trunk@14844 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 0fed39a121..f9262ffcea 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; }