Changeset 10639 for trunk/wp-includes/http.php
- Timestamp:
- 02/23/2009 09:55:49 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/http.php
r10633 r10639 579 579 */ 580 580 function buildCookieHeader( &$r ) { 581 if ( isset($r['cookies']) && count( $r['cookies']) ) {581 if ( ! empty($r['cookies']) ) { 582 582 $cookies_header = ''; 583 foreach ( $r['cookies'] as $cookie ) {583 foreach ( (array) $r['cookies'] as $cookie ) { 584 584 $cookies_header .= $cookie->getHeaderValue() . '; '; 585 585 }
Note: See TracChangeset
for help on using the changeset viewer.