From 7bcbe0cce1f22c8b61d8bcbb55df9e029b1fec68 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 5 Apr 2015 15:47:27 +0000 Subject: [PATCH] Remove an unnecessary inline `@see` tag and document the `$wpdb` global in two `WP_Comment_Query` methods. See [31793]. See #31888. Built from https://develop.svn.wordpress.org/trunk@32038 git-svn-id: http://core.svn.wordpress.org/trunk@32017 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 4 +++- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 6fcb4a6d78..6c6ca6fabb 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -450,7 +450,7 @@ class WP_Comment_Query { * 'post_author__not_in', 'author__in', 'author__not_in', 'post__in', * 'post__not_in', 'include_unapproved', 'type__in', and 'type__not_in' * arguments to $query_vars. - * @since 4.2.0 Moved parsing to {@link WP_Comment_Query::parse_query()}. + * @since 4.2.0 Moved parsing to WP_Comment_Query::parse_query(). * @access public * * @param string|array $query Array or URL query string of parameters. @@ -467,6 +467,8 @@ class WP_Comment_Query { * @since 4.2.0 * @access public * + * @global wpdb $wpdb WordPress database abstraction object. + * * @return array The list of comments. */ public function get_comments() { diff --git a/wp-includes/version.php b/wp-includes/version.php index e6b72fd81b..73150f4f77 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta4-32037'; +$wp_version = '4.2-beta4-32038'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.