Changeset 34778 for trunk/src/wp-signup.php
- Timestamp:
- 10/02/2015 07:07:23 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-signup.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r34665 r34778 8 8 require( dirname( __FILE__ ) . '/wp-blog-header.php' ); 9 9 10 if ( is_array( get_ site_option( 'illegal_names' )) && isset( $_GET[ 'new' ] ) && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) ) {10 if ( is_array( get_network_option( 'illegal_names' ) ) && isset( $_GET[ 'new' ] ) && in_array( $_GET[ 'new' ], get_network_option( 'illegal_names' ) ) ) { 11 11 wp_redirect( network_home_url() ); 12 12 die(); … … 645 645 646 646 // Main 647 $active_signup = get_ site_option( 'registration', 'none' );647 $active_signup = get_network_option( 'registration', 'none' ); 648 648 /** 649 649 * Filter the type of site sign-up.
Note: See TracChangeset
for help on using the changeset viewer.