Make WordPress Core

Changeset 10633


Ignore:
Timestamp:
02/23/2009 06:40:03 AM (17 years ago)
Author:
ryan
Message:

Fix notice. Props sivel. fixes #9068

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/http.php

    r10625 r10633  
    579579     */
    580580    function buildCookieHeader( &$r ) {
    581         if ( count( $r['cookies'] ) ) {
     581        if ( isset($r['cookies']) && count( $r['cookies'] ) ) {
    582582            $cookies_header = '';
    583583            foreach ( $r['cookies'] as $cookie ) {
Note: See TracChangeset for help on using the changeset viewer.