Changes in trunk/wp-includes/class-http.php [14455:15143]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-http.php
r14455 r15143 1172 1172 $arrURL = parse_url($url); 1173 1173 1174 if ( 'http' != $arrURL['scheme'] ||'https' != $arrURL['scheme'] )1174 if ( 'http' != $arrURL['scheme'] && 'https' != $arrURL['scheme'] ) 1175 1175 $url = preg_replace('|^' . preg_quote($arrURL['scheme'], '|') . '|', 'http', $url); 1176 1176
Note: See TracChangeset
for help on using the changeset viewer.