Changeset 55259 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 02/07/2023 01:44:09 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r55253 r55259 1071 1071 * 1072 1072 * @since 4.7.4 1073 * @since 6.2.0 The `$expire`, `$expiration`, `$user_id`, and `$token` parameters were added.1073 * @since 6.2.0 The `$expire`, `$expiration`, `$user_id`, `$scheme`, and `$token` parameters were added. 1074 1074 * 1075 1075 * @param bool $send Whether to send auth cookies to the client. Default true. … … 1079 1079 * Default is 14 days from now. Zero when clearing cookies. 1080 1080 * @param int $user_id User ID. Zero when clearing cookies. 1081 * @param string $scheme Authentication scheme. Values include 'auth' or 'secure_auth'. 1081 1082 * @param string $token User's session token to use for this cookie. Empty string when clearing cookies. 1082 1083 */ 1083 if ( ! apply_filters( 'send_auth_cookies', true, $expire, $expiration, $user_id, $ token ) ) {1084 if ( ! apply_filters( 'send_auth_cookies', true, $expire, $expiration, $user_id, $scheme, $token ) ) { 1084 1085 return; 1085 1086 }
Note: See TracChangeset
for help on using the changeset viewer.