Ticket #19922: 19922.without-filter.diff

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

Simple patch to remove the encoding

Line 
1Index: class-http.php
2===================================================================
3--- class-http.php      (revision 20371)
4+++ class-http.php      (working copy)
5@@ -1540,7 +1540,7 @@
6                if ( empty( $this->name ) || empty( $this->value ) )
7                        return '';
8 
9-               return $this->name . '=' . urlencode( $this->value );
10+               return $this->name . '=' . $this->value;
11        }
12 
13        /**