Make WordPress Core

Changeset 32561


Ignore:
Timestamp:
05/23/2015 07:36:43 PM (11 years ago)
Author:
DrewAPicture
Message:

Fix some inline documentation syntax in the DocBlock for wp_xmlrpc_server->minimum_args().

See #32246.

File:
1 edited

Legend:

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

    r32560 r32561  
    579579
    580580                foreach ( $blogs as $blog ) {
    581                         // Don't include blogs that aren't hosted at this site
     581                        // Don't include blogs that aren't hosted at this site.
    582582                        if ( $blog->site_id != get_current_site()->id )
    583583                                continue;
     
    607607         *
    608608         * @since 3.4.0
     609         * @access protected
    609610         *
    610611         * @param string|array $args Sanitize single string or array of strings.
    611612         * @param int $count Minimum number of arguments.
    612          * @return bool if $args contains at least $count arguments.
     613         * @return bool if `$args` contains at least $count arguments.
    613614         */
    614615        protected function minimum_args( $args, $count ) {
Note: See TracChangeset for help on using the changeset viewer.