From 9145c85fc74b10231b865e8975e047fbec6a56cf Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 4 Jan 2014 18:50:11 +0000 Subject: [PATCH] Correct 'found_users_query' filter description. see #25533. Built from https://develop.svn.wordpress.org/trunk@26904 git-svn-id: http://core.svn.wordpress.org/trunk@26787 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 7dd26e4156..7a2d98d738 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -663,13 +663,13 @@ class WP_User_Query { } /** - * Filter SELECT_FOUND_ROWS value for the current WP_User_Query instance. + * Filter SELECT FOUND_ROWS() query for the current WP_User_Query instance. * * @since 3.2.0 * * @global wpdb $wpdb WordPress database object. * - * @param string $sql The SELECT_FOUND_ROWS() value for the current WP_User_Query. + * @param string $sql The SELECT FOUND_ROWS() query for the current WP_User_Query. */ if ( isset( $qv['count_total'] ) && $qv['count_total'] ) $this->total_users = $wpdb->get_var( apply_filters( 'found_users_query', 'SELECT FOUND_ROWS()' ) );