XML-RPC: Pass an empty array to the `xmlrpc_call` action in methods that have no arguments.
This avoids an "Undefined variable" PHP notice in the `::mt_supportedMethods()` and `::mt_supportedTextFilters()` methods. Follow-up to [50353]. Props dd32. Fixes #52524. Built from https://develop.svn.wordpress.org/trunk@50499 git-svn-id: http://core.svn.wordpress.org/trunk@50112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
328fa9858d
commit
497171a1c8
|
@ -6649,7 +6649,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
*/
|
*/
|
||||||
public function mt_supportedMethods() {
|
public function mt_supportedMethods() {
|
||||||
/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
|
/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
|
||||||
do_action( 'xmlrpc_call', 'mt.supportedMethods', $args, $this );
|
do_action( 'xmlrpc_call', 'mt.supportedMethods', array(), $this );
|
||||||
|
|
||||||
return array_keys( $this->methods );
|
return array_keys( $this->methods );
|
||||||
}
|
}
|
||||||
|
@ -6661,7 +6661,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
*/
|
*/
|
||||||
public function mt_supportedTextFilters() {
|
public function mt_supportedTextFilters() {
|
||||||
/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
|
/** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
|
||||||
do_action( 'xmlrpc_call', 'mt.supportedTextFilters', $args, $this );
|
do_action( 'xmlrpc_call', 'mt.supportedTextFilters', array(), $this );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters the MoveableType text filters list for XML-RPC.
|
* Filters the MoveableType text filters list for XML-RPC.
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.8-alpha-50496';
|
$wp_version = '5.8-alpha-50499';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue