Changeset 983
- Timestamp:
- 05/23/07 09:52:09 (2 years ago)
- Files:
-
- trunk/wp-signup.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-signup.php
r969 r983 4 4 require( 'wp-blog-header.php' ); 5 5 require_once( ABSPATH . WPINC . '/registration.php' ); 6 7 if( is_array( get_site_option( 'illegal_names' )) && $_GET[ 'new' ] != '' && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) == true ) { 8 header( "Location: http://{$current_site->domain}{$current_site->path}" ); 9 die(); 10 } 6 11 7 12 do_action("signup_header"); … … 363 368 364 369 // Main 365 if( is_array( get_site_option( 'illegal_names' )) && $_GET[ 'new' ] != '' && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) == true ) {366 header( "Location: http://{$current_site->domain}{$current_site->path}" );367 die();368 }369 370 370 $active_signup = 'all'; 371 371 $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user"
