Changeset 24445
- Timestamp:
- 06/19/2013 08:36:46 AM (11 years ago)
- Location:
- branches/3.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.5
- Property svn:mergeinfo changed
/trunk merged: 23664,23902,24442,24444
- Property svn:mergeinfo changed
-
branches/3.5/wp-includes/functions.php
r24440 r24445 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.