Changeset 55901
- Timestamp:
- 06/09/2023 01:58:02 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/xmlrpc.php
r54891 r55901 7 7 8 8 /** 9 * Whether this is an XML-RPC Request 9 * Whether this is an XML-RPC Request. 10 10 * 11 11 * @var bool … … 31 31 require_once __DIR__ . '/wp-load.php'; 32 32 33 if ( isset( $_GET['rsd'] ) ) { // http ://cyber.law.harvard.edu/blogs/gems/tech/rsd.html33 if ( isset( $_GET['rsd'] ) ) { // https://cyber.harvard.edu/blogs/gems/tech/rsd.html 34 34 header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); 35 35 echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?' . '>'; … … 47 47 <?php 48 48 /** 49 * Add additional APIs to the Really Simple Discovery (RSD) endpoint.49 * Adds additional APIs to the Really Simple Discovery (RSD) endpoint. 50 50 * 51 * @link http ://cyber.law.harvard.edu/blogs/gems/tech/rsd.html51 * @link https://cyber.harvard.edu/blogs/gems/tech/rsd.html 52 52 * 53 53 * @since 3.5.0
Note: See TracChangeset
for help on using the changeset viewer.