Make WordPress Core

Ticket #19922: 19922.without-filter.diff

File 19922.without-filter.diff, 368 bytes (added by westi, 13 years ago)

Simple patch to remove the encoding

  • class-http.php

     
    15401540                if ( empty( $this->name ) || empty( $this->value ) )
    15411541                        return '';
    15421542
    1543                 return $this->name . '=' . urlencode( $this->value );
     1543                return $this->name . '=' . $this->value;
    15441544        }
    15451545
    15461546        /**