From b71b3231cec04289af8a0dc58ed1412ce683d9f2 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 4 Jan 2014 18:49:30 +0000 Subject: [PATCH] Correct 'found_users_query' filter description. see #25533. git-svn-id: https://develop.svn.wordpress.org/trunk@26904 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/user.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/user.php b/src/wp-includes/user.php index 7dd26e4156..7a2d98d738 100644 --- a/src/wp-includes/user.php +++ b/src/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()' ) );