Changeset 45590 for trunk/src/wp-includes/class-http.php
- Timestamp:
- 07/02/2019 11:41:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r45580 r45590 927 927 } 928 928 929 if ( ! $url_parts = wp_parse_url( $url ) ) { 929 $url_parts = wp_parse_url( $url ); 930 if ( ! $url_parts ) { 930 931 return $maybe_relative_path; 931 932 } 932 933 933 if ( ! $relative_url_parts = wp_parse_url( $maybe_relative_path ) ) { 934 $relative_url_parts = wp_parse_url( $maybe_relative_path ); 935 if ( ! $relative_url_parts ) { 934 936 return $maybe_relative_path; 935 937 }
Note: See TracChangeset
for help on using the changeset viewer.