Redirect to network_admin_url() in network/edit.php. props PeteMall, fixes #18379.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18564 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-08-18 06:17:47 +00:00
parent ba5c2141bb
commit e00bc528b6
1 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,7 @@ if ( ! is_multisite() )
wp_die( __( 'Multisite support is not enabled.' ) ); wp_die( __( 'Multisite support is not enabled.' ) );
if ( empty( $_GET['action'] ) ) { if ( empty( $_GET['action'] ) ) {
wp_redirect( admin_url( 'index.php' ) ); wp_redirect( network_admin_url() );
exit; exit;
} }
@ -22,7 +22,8 @@ do_action( 'wpmuadminedit' , '');
// Let plugins use us as a post handler easily // Let plugins use us as a post handler easily
do_action( 'network_admin_edit_' . $_GET['action'] ); do_action( 'network_admin_edit_' . $_GET['action'] );
wp_redirect( network_admin_url( 'index.php' ) );
wp_redirect( network_admin_url() );
exit(); exit();
?> ?>