Changeset 27725
- Timestamp:
- 03/25/2014 09:06:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/admin.php
r26913 r27725 16 16 wp_die( __( 'Multisite support is not enabled.' ) ); 17 17 18 $redirect_network_admin_request = ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ); 18 $redirect_network_admin_request = 0 !== strcasecmp( $current_blog->domain, $current_site->domain ) || 0 !== strcasecmp( $current_blog->path, $current_site->path ); 19 19 20 /** 20 21 * Filter whether to redirect the request to the Network Admin.
Note: See TracChangeset
for help on using the changeset viewer.