Make WordPress Core


Ignore:
Timestamp:
06/16/2015 08:00:15 PM (8 years ago)
Author:
wonderboymusic
Message:

if is a statment, not a function.

See #32444.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r32797 r32800  
    14851485
    14861486    // Strip the protocol.
    1487     if( wp_is_stream( $target ) ) {
     1487    if ( wp_is_stream( $target ) ) {
    14881488        list( $wrapper, $target ) = explode( '://', $target, 2 );
    14891489    }
     
    14931493
    14941494    // Put the wrapper back on the target.
    1495     if( $wrapper !== null ) {
     1495    if ( $wrapper !== null ) {
    14961496        $target = $wrapper . '://' . $target;
    14971497    }
Note: See TracChangeset for help on using the changeset viewer.