Changeset 41063 for trunk/src/wp-includes/class-wp-network-query.php
- Timestamp:
- 07/17/2017 08:15:27 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-network-query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-network-query.php
r41005 r41063 209 209 210 210 // $args can include anything. Only use the args defined in the query_var_defaults to compute the key. 211 $key = md5( serialize( wp_array_slice_assoc( $this->query_vars, array_keys( $this->query_var_defaults ) ) ) ); 211 $_args = wp_array_slice_assoc( $this->query_vars, array_keys( $this->query_var_defaults ) ); 212 213 // Ignore the $fields argument as the queried result will be the same regardless. 214 unset( $_args['fields'] ); 215 216 $key = md5( serialize( $_args ) ); 212 217 $last_changed = wp_cache_get_last_changed( 'networks' ); 213 218
Note: See TracChangeset
for help on using the changeset viewer.