diff --git a/src/wp-includes/class-wp-comment-query.php b/src/wp-includes/class-wp-comment-query.php
index e30094d..11c967a 100644
a
|
b
|
class WP_Comment_Query { |
363 | 363 | } |
364 | 364 | |
365 | 365 | // $args can include anything. Only use the args defined in the query_var_defaults to compute the key. |
366 | | $key = md5( serialize( wp_array_slice_assoc( $this->query_vars, array_keys( $this->query_var_defaults ) ) ) ); |
| 366 | $key = md5( serialize( $this->query_vars ) ); |
367 | 367 | $last_changed = wp_cache_get( 'last_changed', 'comment' ); |
368 | 368 | if ( ! $last_changed ) { |
369 | 369 | $last_changed = microtime(); |