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

git-svn-id: https://develop.svn.wordpress.org/trunk@18564 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-08-18 06:17:47 +00:00
parent 5464b1abc2
commit 2d52bddbde

View File

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