Make WordPress Core

Changeset 25486


Ignore:
Timestamp:
09/19/2013 12:04:16 AM (11 years ago)
Author:
SergeyBiryukov
Message:

Update inline documentation for hooks in wp-admin/includes/ms.php.

props jamescollins.
see #25229.

File:
1 edited

Legend:

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

    r25481 r25486  
    163163        return false;
    164164    /**
    165      * Fires when a user is deleted from the network.
     165     * Fires before a user is deleted from the network.
    166166     *
    167167     * @since MU
     
    208208     * @since 2.8.0
    209209     *
    210      * @param int $id User ID of the user about to be deleted from the network.
     210     * @param int $id User ID of the user that was deleted from the network.
    211211     */
    212212    do_action( 'deleted_user', $id );
     
    448448        if ( $value == 1 ) {
    449449            /**
    450              * Fires when the user is marked as a SPAM user.
     450             * Fires after the user is marked as a SPAM user.
    451451             *
    452452             * @since 3.0.0
     
    457457        } else {
    458458            /**
    459              * Fires when the user is marked as a HAM user. Opposite of SPAM.
     459             * Fires after the user is marked as a HAM user. Opposite of SPAM.
    460460             *
    461461             * @since 3.0.0
     
    712712     * @since 3.0.0
    713713     *
    714      * @param int $user_id User ID of the user is granted Super Admin privileges.
     714     * @param int $user_id User ID of the user that is about to be granted Super Admin privileges.
    715715     */
    716716    do_action( 'grant_super_admin', $user_id );
     
    729729         * @since 3.0.0
    730730         *
    731          * @param int $user_id User ID of the user is granted Super Admin privileges.
     731         * @param int $user_id User ID of the user that was granted Super Admin privileges.
    732732         */
    733733        do_action( 'granted_super_admin', $user_id );
Note: See TracChangeset for help on using the changeset viewer.