From 3a5eefe78060c39d6f9a633703feb8d4378a41fd Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 24 Nov 2008 13:08:01 +0000 Subject: Tiny typo git-svn-id: http://svn.automattic.com/wordpress-mu/branches/2.6@1540 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-signup.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'wp-signup.php') diff --git a/wp-signup.php b/wp-signup.php index 0a7965a..28e7d6b 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -14,7 +14,10 @@ if( is_array( get_site_option( 'illegal_names' )) && $_GET[ 'new' ] != '' && in_ die(); } -do_action("signup_header"); +function do_signup_header() { + do_action("signup_header"); +} +add_action( 'wp_head', 'do_signup_header' ); function signuppageheaders() { echo "\n"; @@ -356,7 +359,7 @@ function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user

-- cgit