Make WordPress Core


Ignore:
Timestamp:
03/10/2017 03:02:43 PM (9 years ago)
Author:
johnbillion
Message:

Docs: Remove the duplicate hook documentation for the newly introduced send_auth_cookies filter.

See #39367

File:
1 edited

Legend:

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

    r40263 r40264  
    934934        do_action( 'clear_auth_cookie' );
    935935
    936         /**
    937          * Allows preventing auth cookies from actually being sent to the client.
    938          *
    939          * @since 4.7.4
    940          *
    941          * @param bool $send Whether to send auth cookies to the client.
    942          */
     936        /** This filter is documented in wp-includes/pluggable.php */
    943937        if ( ! apply_filters( 'send_auth_cookies', true ) ) {
    944938                return;
Note: See TracChangeset for help on using the changeset viewer.