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:
Drew Jaynes 2015-12-16 05:49:26 +00:00
parent 489023e001
commit fcd35518d9
2 changed files with 9 additions and 2 deletions

View File

@ -4330,8 +4330,15 @@ class wp_xmlrpc_server extends IXR_Server {
/** /**
* Private function for retrieving a users blogs for multisite setups * Private function for retrieving a users blogs for multisite setups
* *
* @since 3.0.0
* @access protected * @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 * @return array|IXR_Error
*/ */
protected function _multisite_getUsersBlogs( $args ) { protected function _multisite_getUsersBlogs( $args ) {

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.