summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wp-signup.php2
1 files changed, 1 insertions, 1 deletions
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();
}