Make WordPress Core


Ignore:
Timestamp:
01/07/2014 04:04:18 AM (11 years ago)
Author:
DrewAPicture
Message:

Inline documentation for hooks in wp-admin/network/admin.php.

Props Hanni.
Fixes #26216.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/admin.php

    r19712 r26913  
    1717
    1818$redirect_network_admin_request = ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) );
     19/**
     20 * Filter whether to redirect the request to the Network Admin.
     21 *
     22 * @since 3.2.0
     23 *
     24 * @param bool $redirect_user_admin_request Whether the request should be redirected.
     25 */
    1926$redirect_network_admin_request = apply_filters( 'redirect_network_admin_request', $redirect_network_admin_request );
    2027if ( $redirect_network_admin_request ) {
Note: See TracChangeset for help on using the changeset viewer.