diff --git wp-includes/comment.php wp-includes/comment.php
index 65e18a7..15e8de3 100644
|
|
class WP_Comment_Query { |
240 | 240 | |
241 | 241 | $this->query_vars = wp_parse_args( $query_vars, $defaults ); |
242 | 242 | |
| 243 | do_action_ref_array( 'pre_get_comments', array( &$this ) ); |
| 244 | |
243 | 245 | // Parse meta query |
244 | 246 | $this->meta_query = new WP_Meta_Query(); |
245 | 247 | $this->meta_query->parse_query_vars( $this->query_vars ); |
246 | 248 | |
247 | | do_action_ref_array( 'pre_get_comments', array( &$this ) ); |
248 | 249 | extract( $this->query_vars, EXTR_SKIP ); |
249 | 250 | |
250 | 251 | // $args can be whatever, only use the args defined in defaults to compute the key |