Changeset 27552
- Timestamp:
- 03/15/2014 05:00:27 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-IXR.php
r26868 r27552 629 629 if (!$this->path) { 630 630 $this->path = '/'; 631 } 632 633 if ( ! empty( $bits['query'] ) ) { 634 $this->path .= '?' . $bits['query']; 631 635 } 632 636 } else { -
trunk/src/wp-includes/class-wp-http-ixr-client.php
r19712 r27552 19 19 20 20 // Make absolutely sure we have a path 21 if ( ! $this->path ) 21 if ( ! $this->path ) { 22 22 $this->path = '/'; 23 } 24 25 if ( ! empty( $bits['query'] ) ) { 26 $this->path .= '?' . $bits['query']; 27 } 23 28 } else { 24 29 $this->scheme = 'http';
Note: See TracChangeset
for help on using the changeset viewer.