Make WordPress Core


Ignore:
Timestamp:
12/16/2015 05:48:10 AM (11 years ago)
Author:
DrewAPicture
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r35956 r35957  
    43314331         * Private function for retrieving a users blogs for multisite setups
    43324332         *
     4333         * @since 3.0.0
    43334334         * @access protected
    43344335         *
     4336         * @param array $args {
     4337         *     Method arguments. Note: arguments must be ordered as documented.
     4338         *
     4339         *     @type string $username Username.
     4340         *     @type string $password Password.
     4341         * }
    43354342         * @return array|IXR_Error
    43364343         */
    4337         protected function _multisite_getUsersBlogs($args) {
     4344        protected function _multisite_getUsersBlogs( $args ) {
    43384345                $current_blog = get_blog_details();
    43394346
Note: See TracChangeset for help on using the changeset viewer.