From 4b0e64aa8c8723781a2428160d3d9c18a0e0d3cd Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 30 Jun 2017 16:08:44 +0000 Subject: [PATCH] Docs: Add missing `@since`, `@access`, and `@global` notations to the DocBlock for `WP_Query::parse_search_order()`. Props dixitadusara. Fixes #41045. Built from https://develop.svn.wordpress.org/trunk@40972 git-svn-id: http://core.svn.wordpress.org/trunk@40822 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-query.php | 7 ++++++- wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-query.php b/wp-includes/class-wp-query.php index 6b634d2cb0..169bb2e388 100644 --- a/wp-includes/class-wp-query.php +++ b/wp-includes/class-wp-query.php @@ -1441,7 +1441,12 @@ class WP_Query { } /** - * Generate SQL for the ORDER BY condition based on passed search terms. + * Generates SQL for the ORDER BY condition based on passed search terms. + * + * @since 3.7.0 + * @access protected + * + * @global wpdb $wpdb WordPress database abstraction object. * * @param array $q Query variables. * @return string ORDER BY clause. diff --git a/wp-includes/version.php b/wp-includes/version.php index a452b736f5..1194ead2e8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-40971'; +$wp_version = '4.9-alpha-40972'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.