Ticket #12761: wp-includes--class-http.php.diff
| File wp-includes--class-http.php.diff, 635 bytes (added by josephscott, 3 years ago) |
|---|
-
wp-includes/class-http.php
1736 1736 1737 1737 // Set everything else as a property 1738 1738 foreach ( $pairs as $pair ) { 1739 $pair = rtrim( $pair ); 1739 1740 if ( empty($pair) ) //Handles the cookie ending in ; which results in a empty final pair 1740 1741 continue; 1741 1742 … … 2000 2001 function is_available() { 2001 2002 return ( function_exists('gzuncompress') || function_exists('gzdeflate') || function_exists('gzinflate') ); 2002 2003 } 2003 } 2004 No newline at end of file 2004 }