From 52f6e5b033453848d3c21ca3c2fa6b65a585f8ae Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 10 Sep 2007 11:31:29 +0000 Subject: Redirect to the main signup page, even on vhost=no, fixes #406 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1046 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-signup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wp-signup.php') diff --git a/wp-signup.php b/wp-signup.php index 1056b9a..9798703 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -11,7 +11,7 @@ if( is_array( get_site_option( 'illegal_names' )) && $_GET[ 'new' ] != '' && in_ do_action("signup_header"); -if( $current_blog->domain != $current_site->domain ) { +if( $current_blog->domain . $current_blog->path != $current_site->domain . $current_site->path ) { header( "Location: http://" . $current_site->domain . $current_site->path . "wp-signup.php" ); die(); } -- cgit