Changeset 28512
- Timestamp:
- 05/19/2014 05:50:19 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-ixr-client.php
r27552 r28512 9 9 class WP_HTTP_IXR_Client extends IXR_Client { 10 10 11 function __construct($server, $path = false, $port = false, $timeout = 15) {11 public function __construct($server, $path = false, $port = false, $timeout = 15) { 12 12 if ( ! $path ) { 13 13 // Assume we have been given a URL instead … … 22 22 $this->path = '/'; 23 23 } 24 24 25 25 if ( ! empty( $bits['query'] ) ) { 26 26 $this->path .= '?' . $bits['query']; … … 36 36 } 37 37 38 function query() {38 public function query() { 39 39 $args = func_get_args(); 40 40 $method = array_shift($args);
Note: See TracChangeset
for help on using the changeset viewer.