Ticket #26947: ixr_query_string_patch.diff
| File ixr_query_string_patch.diff, 1009 bytes (added by , 12 years ago) |
|---|
-
wp-includes/class-IXR.php
629 629 if (!$this->path) { 630 630 $this->path = '/'; 631 631 } 632 633 if ( ! empty( $bits['query'] ) ) { 634 $this->path .= '?' . $bits['query']; 635 } 632 636 } else { 633 637 $this->server = $server; 634 638 $this->path = $path; -
wp-includes/class-wp-http-ixr-client.php
20 20 // Make absolutely sure we have a path 21 21 if ( ! $this->path ) 22 22 $this->path = '/'; 23 24 if ( ! empty( $bits['query'] ) ) 25 $this->path .= '?' . $bits['query']; 23 26 } else { 24 27 $this->scheme = 'http'; 25 28 $this->server = $server;