Changeset 17511
- Timestamp:
- 03/08/2011 10:56:43 PM (14 years ago)
- Location:
- branches/3.1/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-admin/network/admin.php
r16847 r17511 16 16 wp_die( __( 'Multisite support is not enabled.' ) ); 17 17 18 if ( ! is_main_site() ) {18 if ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ) { 19 19 wp_redirect( network_admin_url() ); 20 20 exit; -
branches/3.1/wp-admin/user/admin.php
r17332 r17511 17 17 } 18 18 19 if ( ! is_main_site() ) {19 if ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ) { 20 20 wp_redirect( user_admin_url() ); 21 21 exit;
Note: See TracChangeset
for help on using the changeset viewer.