Ticket #17168: 17168.3.diff
File 17168.3.diff, 700 bytes (added by , 10 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 = ( ( 0 !== strcasecmp( $current_blog->domain, $current_site->domain ) ) || ( 0 !== strcasecmp( $current_blog->path, $current_site->path ) ) ); 19 19 /** 20 20 * Filter whether to redirect the request to the Network Admin. 21 21 *