From 8aa163e65aeacbc2e75d7c5cfd5ea4db41922521 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 23 May 2015 19:37:26 +0000 Subject: [PATCH] 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 --- wp-includes/class-wp-xmlrpc-server.php | 5 +++-- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index 6452e34952..fe55439292 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -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 ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 3f5f91ab79..fcaee30f80 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.