Make WordPress Core


Ignore:
Timestamp:
06/28/2020 02:07:53 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Capitalize "ID", when referring to a user ID, term ID, etc. in a more consistent way.

Follow-up to [48104]

See #49572.

File:
1 edited

Legend:

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

    r48168 r48200  
    4040         * @param array  $response  The no-priv Heartbeat response.
    4141         * @param array  $data      The $_POST data sent.
    42          * @param string $screen_id The screen id.
     42         * @param string $screen_id The screen ID.
    4343         */
    4444        $response = apply_filters( 'heartbeat_nopriv_received', $response, $data, $screen_id );
     
    5151     *
    5252     * @param array  $response  The no-priv Heartbeat response.
    53      * @param string $screen_id The screen id.
     53     * @param string $screen_id The screen ID.
    5454     */
    5555    $response = apply_filters( 'heartbeat_nopriv_send', $response, $screen_id );
     
    6363     *
    6464     * @param array  $response  The no-priv Heartbeat response.
    65      * @param string $screen_id The screen id.
     65     * @param string $screen_id The screen ID.
    6666     */
    6767    do_action( 'heartbeat_nopriv_tick', $response, $screen_id );
     
    33553355         * @param array  $response  The Heartbeat response.
    33563356         * @param array  $data      The $_POST data sent.
    3357          * @param string $screen_id The screen id.
     3357         * @param string $screen_id The screen ID.
    33583358         */
    33593359        $response = apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id );
     
    33743374         * @param array  $response  The Heartbeat response.
    33753375         * @param array  $data      The $_POST data sent.
    3376          * @param string $screen_id The screen id.
     3376         * @param string $screen_id The screen ID.
    33773377         */
    33783378        $response = apply_filters( 'heartbeat_received', $response, $data, $screen_id );
     
    33853385     *
    33863386     * @param array  $response  The Heartbeat response.
    3387      * @param string $screen_id The screen id.
     3387     * @param string $screen_id The screen ID.
    33883388     */
    33893389    $response = apply_filters( 'heartbeat_send', $response, $screen_id );
     
    33973397     *
    33983398     * @param array  $response  The Heartbeat response.
    3399      * @param string $screen_id The screen id.
     3399     * @param string $screen_id The screen ID.
    34003400     */
    34013401    do_action( 'heartbeat_tick', $response, $screen_id );
Note: See TracChangeset for help on using the changeset viewer.