Make WordPress Core


Ignore:
Timestamp:
04/04/2010 01:29:35 PM (13 years ago)
Author:
nacin
Message:

File-level phpdoc for multisite files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/ms-edit.php

    r13941 r13998  
    11<?php
     2/**
     3 * Action handler for Multisite administration panels.
     4 *
     5 * @package WordPress
     6 * @subpackage Multisite
     7 * @since 3.0.0
     8 */
     9
    210require_once( './admin.php' );
    311
    412if ( !is_multisite() )
    513    wp_die( __( 'Multisite support is not enabled.' ) );
     14
     15if ( empty( $_GET['action'] ) )
     16    wp_redirect( admin_url( 'ms-admin.php' ) );
    617
    718do_action( 'wpmuadminedit' , '');
Note: See TracChangeset for help on using the changeset viewer.