Changeset 47617 for trunk/src/wp-includes/class-wp-http-proxy.php
- Timestamp:
- 04/24/2020 07:26:57 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-proxy.php
r47508 r47617 168 168 */ 169 169 public function send_through_proxy( $uri ) { 170 /* 171 * parse_url() only handles http, https type URLs, and will emit E_WARNING on failure. 172 * This will be displayed on sites, which is not reasonable. 173 */ 174 $check = @parse_url( $uri ); 170 $check = parse_url( $uri ); 175 171 176 172 // Malformed URL, can not process, but this could mean ssl, so let through anyway.
Note: See TracChangeset
for help on using the changeset viewer.