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,11 +4330,18 @@ 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) {
protected function _multisite_getUsersBlogs( $args ) {
$current_blog = get_blog_details();
$domain = $current_blog->domain;

View File

@ -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.