Changeset 26120 for trunk/src/wp-includes/http.php
- Timestamp:
- 11/13/2013 03:22:48 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/http.php
r25302 r26120 546 546 */ 547 547 function ms_allowed_http_request_hosts( $is_external, $host ) { 548 global $wpdb , $current_site;548 global $wpdb; 549 549 static $queried = array(); 550 550 if ( $is_external ) 551 551 return $is_external; 552 if ( $host === $current_site->domain )552 if ( $host === get_current_site()->domain ) 553 553 return true; 554 554 if ( isset( $queried[ $host ] ) )
Note: See TracChangeset
for help on using the changeset viewer.