Skip to content

Commit 55644dc

Browse files
XML-RPC: Update specUrl links in IXR_Server and IXR_IntrospectionServer.
As the original URLs are no longer accessible, this commit uses the latest available copy of the corresponding documentation from the Wayback Machine. Follow-up to [1346], [56167]. Props mayur8991, panchalhimani711, SergeyBiryukov. Fixes #63848. git-svn-id: https://develop.svn.wordpress.org/trunk@60655 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 450524a commit 55644dc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/wp-includes/IXR/class-IXR-introspectionserver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function __construct()
1919
$this->setCallbacks();
2020
$this->setCapabilities();
2121
$this->capabilities['introspection'] = array(
22-
'specUrl' => 'http://xmlrpc.usefulinc.com/doc/reserved.html',
22+
'specUrl' => 'https://web.archive.org/web/20050404090342/http://xmlrpc.usefulinc.com/doc/reserved.html',
2323
'specVersion' => 1
2424
);
2525
$this->addCallback(

src/wp-includes/IXR/class-IXR-server.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ function setCapabilities()
161161
// Initialises capabilities array
162162
$this->capabilities = array(
163163
'xmlrpc' => array(
164-
'specUrl' => 'http://www.xmlrpc.com/spec',
164+
'specUrl' => 'https://xmlrpc.com/spec.md',
165165
'specVersion' => 1
166166
),
167167
'faults_interop' => array(
168-
'specUrl' => 'http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php',
168+
'specUrl' => 'https://web.archive.org/web/20240416231938/https://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php',
169169
'specVersion' => 20010516
170170
),
171171
'system.multicall' => array(
172-
'specUrl' => 'http://www.xmlrpc.com/discuss/msgReader$1208',
172+
'specUrl' => 'https://web.archive.org/web/20060624230303/http://www.xmlrpc.com/discuss/msgReader$1208?mode=topic',
173173
'specVersion' => 1
174174
),
175175
);

src/wp-includes/class-wp-xmlrpc-server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6544,7 +6544,7 @@ public function mw_newMediaObject( $args ) {
65446544

65456545
/*
65466546
* MovableType API functions.
6547-
* Specs archive on http://web.archive.org/web/20050220091302/http://www.movabletype.org:80/docs/mtmanual_programmatic.html
6547+
* Specs archive on https://web.archive.org/web/20050220091302/http://www.movabletype.org/docs/mtmanual_programmatic.html
65486548
*/
65496549

65506550
/**

0 commit comments

Comments
 (0)