Changeset 41059 for trunk/src/wp-includes/class-wp-site-query.php
- Timestamp:
- 07/14/2017 09:24:03 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-site-query.php
r40340 r41059 252 252 253 253 // $args can include anything. Only use the args defined in the query_var_defaults to compute the key. 254 $key = md5( serialize( wp_array_slice_assoc( $this->query_vars, array_keys( $this->query_var_defaults ) ) ) ); 254 $_args = wp_array_slice_assoc( $this->query_vars, array_keys( $this->query_var_defaults ) ); 255 256 // Ignore the $fields argument as the queried result will be the same regardless. 257 unset( $_args['fields'] ); 258 259 $key = md5( serialize( $_args ) ); 255 260 $last_changed = wp_cache_get_last_changed( 'sites' ); 256 261
Note: See TracChangeset
for help on using the changeset viewer.