Changeset 24444
- Timestamp:
- 06/19/2013 08:33:10 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r24439 r24444 656 656 $frag = ''; 657 657 658 if ( 0 === stripos( 'http://', $uri) ) {658 if ( 0 === stripos( $uri, 'http://' ) ) { 659 659 $protocol = 'http://'; 660 660 $uri = substr( $uri, 7 ); 661 } elseif ( 0 === stripos( 'https://', $uri) ) {661 } elseif ( 0 === stripos( $uri, 'https://' ) ) { 662 662 $protocol = 'https://'; 663 663 $uri = substr( $uri, 8 );
Note: See TracChangeset
for help on using the changeset viewer.