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. git-svn-id: https://develop.svn.wordpress.org/trunk@35957 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f40efb487a
commit
a9d3c9cc91
@ -4330,11 +4330,18 @@ 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 ) {
|
||||||
$current_blog = get_blog_details();
|
$current_blog = get_blog_details();
|
||||||
|
|
||||||
$domain = $current_blog->domain;
|
$domain = $current_blog->domain;
|
||||||
|
Loading…
Reference in New Issue
Block a user