Make WordPress Core

Changeset 25732


Ignore:
Timestamp:
10/08/2013 08:00:17 PM (11 years ago)
Author:
DrewAPicture
Message:

Inline documentation for hooks in wp-includes/ms-load.php.

Props nukaga, johnbillion.
Fixes #25509.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-load.php

    r24518 r25732  
    7474    $blog = get_blog_details();
    7575
    76     // Allow short-circuiting
    77     $check = apply_filters('ms_site_check', null);
     76    /**
     77     * Filter checking the status of the current blog.
     78     *
     79     * @since 1.2.1
     80     *
     81     * @param bool null Whether to skip the blog status check. Default null.
     82    */
     83    $check = apply_filters( 'ms_site_check', null );
    7884    if ( null !== $check )
    7985        return true;
Note: See TracChangeset for help on using the changeset viewer.