Skip to:
Content

BuddyPress.org

Changeset 9662


Ignore:
Timestamp:
03/30/2015 06:41:44 PM (9 years ago)
Author:
boonebgorges
Message:

Enforce no_results when getting a 0=1 result from the member type tax query.

When passing a 'member_type' to BP_User_Query and no users belong to the
member type, the WP_Tax_Query transformation will return a '0 = 1' clause to
indicate that no results were found. We should respect this result, so that no
members are returned for this kind of query.

Fixes #6334.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/classes/class-bp-user-query.php

    r9661 r9662  
    461461                if ( preg_match( '/' . $wpdb->term_relationships . '\.term_taxonomy_id IN \([0-9, ]+\)/', $member_type_sql_clauses['where'], $matches ) ) {
    462462                    $sql['where']['member_type'] = "u.{$this->uid_name} IN ( SELECT object_id FROM $wpdb->term_relationships WHERE {$matches[0]} )";
     463                } elseif ( false !== strpos( $member_type_sql_clauses['where'], '0 = 1' ) ) {
     464                    $sql['where']['member_type'] = $this->no_results['where'];
    463465                }
    464466            }
  • trunk/tests/phpunit/testcases/core/class-bp-user-query.php

    r9577 r9662  
    484484    }
    485485
     486    /**
     487     * @group member_types
     488     * @ticket BP6334
     489     */
     490    public function test_should_return_no_results_when_no_users_match_the_specified_member_type() {
     491        bp_register_member_type( 'foo' );
     492        $users = $this->factory->user->create_many( 3 );
     493
     494        $q = new BP_User_Query( array(
     495            'member_type' => 'foo, baz',
     496        ) );
     497
     498        $this->assertEmpty( $q->results );
     499    }
    486500
    487501    /**
Note: See TracChangeset for help on using the changeset viewer.