Changeset 24499 for tags/3.5.2/wp-includes/class-http.php
- Timestamp:
- 06/21/2013 07:32:36 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/3.5.2/wp-includes/class-http.php
r24483 r24499 121 121 if ( $r['reject_unsafe_urls'] ) 122 122 $url = wp_http_validate_url( $url ); 123 $url = wp_kses_bad_protocol( $url, array( 'http', 'https', 'ssl' ) ); 123 if ( function_exists( 'wp_kses_bad_protocol' ) ) 124 $url = wp_kses_bad_protocol( $url, array( 'http', 'https', 'ssl' ) ); 124 125 125 126 $arrURL = @parse_url( $url );
Note: See TracChangeset
for help on using the changeset viewer.