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.
Reviewed by dd32, SergeyBiryukov.
Merges [50499] to the 5.7 branch.
Fixes #52524.
Built from https://develop.svn.wordpress.org/branches/5.7@50500


git-svn-id: http://core.svn.wordpress.org/branches/5.7@50113 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-03-05 11:06:03 +00:00
parent 7bb43234fb
commit c696886f57
2 changed files with 3 additions and 3 deletions

View File

@ -6649,7 +6649,7 @@ class wp_xmlrpc_server extends IXR_Server {
*/
public function mt_supportedMethods() {
/** 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 );
}
@ -6661,7 +6661,7 @@ class wp_xmlrpc_server extends IXR_Server {
*/
public function mt_supportedTextFilters() {
/** 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.

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.7-RC2-50498';
$wp_version = '5.7-RC2-50500';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.