Changeset 34912 for trunk/src/wp-signup.php
- Timestamp:
- 10/07/2015 05:11:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r34840 r34912 8 8 require( dirname( __FILE__ ) . '/wp-blog-header.php' ); 9 9 10 if ( is_array( get_ network_option( 'illegal_names' ) ) && isset( $_GET[ 'new' ] ) && in_array( $_GET[ 'new' ], get_network_option( 'illegal_names' ) ) ) {10 if ( is_array( get_site_option( 'illegal_names' )) && isset( $_GET[ 'new' ] ) && in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) ) { 11 11 wp_redirect( network_home_url() ); 12 12 die(); … … 674 674 675 675 // Main 676 $active_signup = get_ network_option( 'registration', 'none' );676 $active_signup = get_site_option( 'registration', 'none' ); 677 677 /** 678 678 * Filter the type of site sign-up.
Note: See TracChangeset
for help on using the changeset viewer.