Ticket #17168: 17168.2.diff
File 17168.2.diff, 692 bytes (added by , 11 years ago) |
---|
-
src/wp-admin/network/admin.php
15 15 if ( ! is_multisite() ) 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 = ( ( strtolower( $current_blog->domain ) != strtolower( $current_site->domain ) ) || ( $current_blog->path != $current_site->path ) ); 19 19 /** 20 20 * Filter whether to redirect the request to the Network Admin. 21 21 *