Changeset 12856
- Timestamp:
- 01/26/2010 09:22:44 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-signup.php
r12752 r12856 23 23 } 24 24 25 if ( $current_blog->domain . $current_blog->path != $current_site->domain . $current_site->path ) { 25 if ( !is_multisite() ) { 26 wp_redirect( get_option( 'siteurl' ) . "/wp-login.php?action=register" ); 27 die(); 28 } 29 30 if ( !is_main_site() ) { 26 31 wp_redirect( "http://" . $current_site->domain . $current_site->path . "wp-signup.php" ); 27 32 die();
Note: See TracChangeset
for help on using the changeset viewer.