Make WordPress Core


Ignore:
Timestamp:
03/08/2017 12:04:05 AM (7 years ago)
Author:
johnbillion
Message:

Build/Test tools: Revert [40239] due to unrelated changes.

See #39486

File:
1 edited

Legend:

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

    r40239 r40240  
    901901    do_action( 'set_logged_in_cookie', $logged_in_cookie, $expire, $expiration, $user_id, 'logged_in' );
    902902
    903     /**
    904      * Allows preventing auth cookies from actually being sent to the client.
    905      *
    906      * @since 4.7.4
    907      *
    908      * @param bool $send Whether to send auth cookies to the client.
    909      */
    910     if ( ! apply_filters( 'send_auth_cookies', true ) ) {
    911         return;
    912     }
    913 
    914903    setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
    915904    setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
     
    933922     */
    934923    do_action( 'clear_auth_cookie' );
    935 
    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      */
    943     if ( ! apply_filters( 'send_auth_cookies', true ) ) {
    944         return;
    945     }
    946924
    947925    setcookie( AUTH_COOKIE,        ' ', time() - YEAR_IN_SECONDS, ADMIN_COOKIE_PATH,   COOKIE_DOMAIN );
Note: See TracChangeset for help on using the changeset viewer.