mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
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:
parent
ba5c2141bb
commit
e00bc528b6
@ -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();
|
||||
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user