Return to apply_filters_ref_array() for back compat with callbacks that specify a ref for the args. Props scribu. see #18536

git-svn-id: http://svn.automattic.com/wordpress/trunk@20024 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2012-02-28 20:37:47 +00:00
parent a395e06896
commit 207ca8ce44

View File

@ -2609,7 +2609,7 @@ class WP_Query {
$this->request = $old_request = "SELECT $found_rows $distinct $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits";
if ( !$q['suppress_filters'] ) {
$this->request = apply_filters( 'posts_request', $this->request, $this );
$this->request = apply_filters_ref_array( 'posts_request', array( $this->request, &$this ) );
}
if ( 'ids' == $q['fields'] ) {
@ -2777,8 +2777,8 @@ class WP_Query {
if ( $q['no_found_rows'] || empty( $limits ) )
return;
$this->found_posts = $wpdb->get_var( apply_filters( 'found_posts_query', 'SELECT FOUND_ROWS()', $this ) );
$this->found_posts = apply_filters( 'found_posts', $this->found_posts, $this );
$this->found_posts = $wpdb->get_var( apply_filters_ref_array( 'found_posts_query', array( 'SELECT FOUND_ROWS()', &$this ) ) );
$this->found_posts = apply_filters_ref_array( 'found_posts', array( $this->found_posts, &$this ) );
$this->max_num_pages = ceil( $this->found_posts / $q['posts_per_page'] );
}