Changeset 27115 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 02/07/2014 08:13:37 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/taxonomy.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r27108 r27115 1314 1314 $last_changed = wp_cache_get( 'last_changed', 'terms' ); 1315 1315 if ( ! $last_changed ) { 1316 $last_changed = microtime( );1316 $last_changed = microtime( true ); 1317 1317 wp_cache_set( 'last_changed', $last_changed, 'terms' ); 1318 1318 } … … 2815 2815 } 2816 2816 2817 wp_cache_set( 'last_changed', microtime( ), 'terms' );2817 wp_cache_set( 'last_changed', microtime( true ), 'terms' ); 2818 2818 } 2819 2819
Note: See TracChangeset
for help on using the changeset viewer.