Anchor network and user admins at the network domain and path rather than at the main site. Makes the redirects consistent with network_admin_url(). fixes #16652 for 3.1
git-svn-id: http://svn.automattic.com/wordpress/branches/3.1@17511 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
db890f3ef9
commit
5e09c87f1d
|
@ -15,7 +15,7 @@ require_once( dirname( dirname( __FILE__ ) ) . '/admin.php' );
|
|||
if ( ! is_multisite() )
|
||||
wp_die( __( 'Multisite support is not enabled.' ) );
|
||||
|
||||
if ( ! is_main_site() ) {
|
||||
if ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ) {
|
||||
wp_redirect( network_admin_url() );
|
||||
exit;
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ if ( ! is_multisite() ) {
|
|||
exit;
|
||||
}
|
||||
|
||||
if ( ! is_main_site() ) {
|
||||
if ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ) {
|
||||
wp_redirect( user_admin_url() );
|
||||
exit;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue