Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-http.php

    r14455 r15143  
    11721172        $arrURL = parse_url($url);
    11731173
    1174         if ( 'http' != $arrURL['scheme'] || 'https' != $arrURL['scheme'] )
     1174        if ( 'http' != $arrURL['scheme'] && 'https' != $arrURL['scheme'] )
    11751175            $url = preg_replace('|^' . preg_quote($arrURL['scheme'], '|') . '|', 'http', $url);
    11761176
Note: See TracChangeset for help on using the changeset viewer.