Docs: Add a missing notation for the `$args` parameter in the DocBlock for `wp_xmlrpc_server::_multisite_getUsersBlogs()`.
Also adds a missing `@since` version. The method was introduced in [12852]. See #32246. Built from https://develop.svn.wordpress.org/trunk@35957 git-svn-id: http://core.svn.wordpress.org/trunk@35921 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
489023e001
commit
fcd35518d9
|
@ -4330,8 +4330,15 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
/**
|
||||
* Private function for retrieving a users blogs for multisite setups
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @access protected
|
||||
*
|
||||
* @param array $args {
|
||||
* Method arguments. Note: arguments must be ordered as documented.
|
||||
*
|
||||
* @type string $username Username.
|
||||
* @type string $password Password.
|
||||
* }
|
||||
* @return array|IXR_Error
|
||||
*/
|
||||
protected function _multisite_getUsersBlogs( $args ) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-alpha-35956';
|
||||
$wp_version = '4.5-alpha-35957';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue