Changeset 15144
- Timestamp:
- 06/04/2010 08:12:12 PM (16 years ago)
- File:
-
- 1 edited
-
branches/2.9/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.9/wp-includes/http.php
r12644 r15144 1136 1136 $arrURL = parse_url($url); 1137 1137 1138 if ( 'http' != $arrURL['scheme'] ||'https' != $arrURL['scheme'] )1138 if ( 'http' != $arrURL['scheme'] && 'https' != $arrURL['scheme'] ) 1139 1139 $url = preg_replace('|^' . preg_quote($arrURL['scheme'], '|') . '|', 'http', $url); 1140 1140
Note: See TracChangeset
for help on using the changeset viewer.