Changeset 7738
- Timestamp:
- 04/18/2008 05:42:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r7645 r7738 581 581 } 582 582 583 $key = md5( serialize( $args ) . serialize( $taxonomies ) ); 583 // $args can be whatever, only use the args defined in defaults to compute the key 584 $key = md5( serialize( compact(array_keys($defaults)) ) . serialize( $taxonomies ) ); 585 584 586 if ( $cache = wp_cache_get( 'get_terms', 'terms' ) ) { 585 587 if ( isset( $cache[ $key ] ) )
Note: See TracChangeset
for help on using the changeset viewer.