Changeset 32800 for trunk/src/wp-includes/functions.php
- Timestamp:
- 06/16/2015 08:00:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r32797 r32800 1485 1485 1486 1486 // Strip the protocol. 1487 if ( wp_is_stream( $target ) ) {1487 if ( wp_is_stream( $target ) ) { 1488 1488 list( $wrapper, $target ) = explode( '://', $target, 2 ); 1489 1489 } … … 1493 1493 1494 1494 // Put the wrapper back on the target. 1495 if ( $wrapper !== null ) {1495 if ( $wrapper !== null ) { 1496 1496 $target = $wrapper . '://' . $target; 1497 1497 }
Note: See TracChangeset
for help on using the changeset viewer.