Changeset 32650 for trunk/src/wp-includes/http.php
- Timestamp:
- 05/29/2015 03:42:40 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/http.php
r32599 r32650 23 23 */ 24 24 function _wp_http_get_object() { 25 static $http ;26 27 if ( is_null( $http) )25 static $http = null; 26 27 if ( is_null( $http ) ) { 28 28 $http = new WP_Http(); 29 29 } 30 30 return $http; 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.