Make WordPress Core

Ticket #33271: 33271.diff

File 33271.diff, 1.5 KB (added by dkotter, 8 years ago)
  • wp-includes/class-wp-http-curl.php

     
    182182                // If streaming to a file open a file handle, and setup our curl streaming handler.
    183183                if ( $r['stream'] ) {
    184184                        if ( ! WP_DEBUG )
    185                                 $this->stream_handle = @fopen( $r['filename'], 'w+' );
     185                                $this->stream_handle = @fopen( $r['filename'], 'w' );
    186186                        else
    187                                 $this->stream_handle = fopen( $r['filename'], 'w+' );
     187                                $this->stream_handle = fopen( $r['filename'], 'w' );
    188188                        if ( ! $this->stream_handle )
    189189                                return new WP_Error( 'http_request_failed', sprintf( __( 'Could not open handle for fopen() to %s' ), $r['filename'] ) );
    190190                } else {
  • wp-includes/class-wp-http-streams.php

     
    221221                // If streaming to a file setup the file handle.
    222222                if ( $r['stream'] ) {
    223223                        if ( ! WP_DEBUG )
    224                                 $stream_handle = @fopen( $r['filename'], 'w+' );
     224                                $stream_handle = @fopen( $r['filename'], 'w' );
    225225                        else
    226                                 $stream_handle = fopen( $r['filename'], 'w+' );
     226                                $stream_handle = fopen( $r['filename'], 'w' );
    227227                        if ( ! $stream_handle )
    228228                                return new WP_Error( 'http_request_failed', sprintf( __( 'Could not open handle for fopen() to %s' ), $r['filename'] ) );
    229229