Fix some inline documentation syntax in the DocBlock for `wp_xmlrpc_server->minimum_args()`.
See #32246. Built from https://develop.svn.wordpress.org/trunk@32561 git-svn-id: http://core.svn.wordpress.org/trunk@32531 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ebe60d1fc4
commit
8aa163e65a
|
@ -578,7 +578,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
$struct = array();
|
||||
|
||||
foreach ( $blogs as $blog ) {
|
||||
// Don't include blogs that aren't hosted at this site
|
||||
// Don't include blogs that aren't hosted at this site.
|
||||
if ( $blog->site_id != get_current_site()->id )
|
||||
continue;
|
||||
|
||||
|
@ -606,10 +606,11 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
* Checks if the method received at least the minimum number of arguments.
|
||||
*
|
||||
* @since 3.4.0
|
||||
* @access protected
|
||||
*
|
||||
* @param string|array $args Sanitize single string or array of strings.
|
||||
* @param int $count Minimum number of arguments.
|
||||
* @return bool if $args contains at least $count arguments.
|
||||
* @return bool if `$args` contains at least $count arguments.
|
||||
*/
|
||||
protected function minimum_args( $args, $count ) {
|
||||
if ( count( $args ) < $count ) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32560';
|
||||
$wp_version = '4.3-alpha-32561';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue