- Timestamp:
- 04/08/2019 05:31:35 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-requests-response.php
r42343 r45135 165 165 $cookies[] = new WP_Http_Cookie( 166 166 array( 167 'name' => $cookie->name, 168 'value' => urldecode( $cookie->value ), 169 'expires' => isset( $cookie->attributes['expires'] ) ? $cookie->attributes['expires'] : null, 170 'path' => isset( $cookie->attributes['path'] ) ? $cookie->attributes['path'] : null, 171 'domain' => isset( $cookie->attributes['domain'] ) ? $cookie->attributes['domain'] : null, 167 'name' => $cookie->name, 168 'value' => urldecode( $cookie->value ), 169 'expires' => isset( $cookie->attributes['expires'] ) ? $cookie->attributes['expires'] : null, 170 'path' => isset( $cookie->attributes['path'] ) ? $cookie->attributes['path'] : null, 171 'domain' => isset( $cookie->attributes['domain'] ) ? $cookie->attributes['domain'] : null, 172 'host_only' => isset( $cookie->flags['host-only'] ) ? $cookie->flags['host-only'] : null, 172 173 ) 173 174 );
Note: See TracChangeset
for help on using the changeset viewer.