mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 08:19:38 +01:00
e3b46b25d3
git-svn-id: http://svn.automattic.com/wordpress/trunk@19712 1a063a9b-81f0-0310-95a4-ce76da25c4cd
28 lines
557 B
PHP
28 lines
557 B
PHP
<?php
|
|
/**
|
|
* Action handler for Multisite administration panels.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Multisite
|
|
* @since 3.0.0
|
|
*/
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
|
require_once( './admin.php' );
|
|
|
|
if ( ! is_multisite() )
|
|
wp_die( __( 'Multisite support is not enabled.' ) );
|
|
|
|
if ( empty( $_GET['action'] ) ) {
|
|
wp_redirect( network_admin_url() );
|
|
exit;
|
|
}
|
|
|
|
do_action( 'wpmuadminedit' , '' );
|
|
|
|
// Let plugins use us as a post handler easily
|
|
do_action( 'network_admin_edit_' . $_GET['action'] );
|
|
|
|
wp_redirect( network_admin_url() );
|
|
exit();
|