Changeset 30026
- Timestamp:
- 10/26/2014 04:45:37 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r30004 r30026 560 560 $join .= $clauses['join']; 561 561 $where .= $clauses['where']; 562 $groupby = "{$wpdb->comments}.comment_ID"; 562 563 if ( ! $this->query_vars['count'] ) { 564 $groupby = "{$wpdb->comments}.comment_ID"; 565 } 563 566 } 564 567 -
trunk/tests/phpunit/tests/comment/query.php
r30004 r30026 614 614 $this->assertNotContains( 'ORDER BY', $q->request ); 615 615 } 616 617 public function test_count() { 618 $c1 = $this->factory->comment->create( array( 'comment_post_ID' => $this->post_id, 'user_id' => 7 ) ); 619 $c2 = $this->factory->comment->create( array( 'comment_post_ID' => $this->post_id, 'user_id' => 7 ) ); 620 621 $q = new WP_Comment_Query(); 622 $found = $q->query( array( 623 'count' => true, 624 ) ); 625 626 $this->assertEquals( 2, $found ); 627 } 628 629 /** 630 * @ticket 23369 631 */ 632 public function test_count_with_meta_query() { 633 $c1 = $this->factory->comment->create( array( 'comment_post_ID' => $this->post_id, 'user_id' => 7 ) ); 634 $c2 = $this->factory->comment->create( array( 'comment_post_ID' => $this->post_id, 'user_id' => 7 ) ); 635 $c3 = $this->factory->comment->create( array( 'comment_post_ID' => $this->post_id, 'user_id' => 7 ) ); 636 add_comment_meta( $c1, 'foo', 'bar' ); 637 add_comment_meta( $c3, 'foo', 'bar' ); 638 639 $q = new WP_Comment_Query(); 640 $found = $q->query( array( 641 'count' => true, 642 'meta_query' => array( 643 array( 644 'key' => 'foo', 645 'value' => 'bar', 646 ), 647 ), 648 ) ); 649 650 $this->assertEquals( 2, $found ); 651 } 616 652 }
Note: See TracChangeset
for help on using the changeset viewer.