Changeset 27115 for trunk/src/wp-includes/comment.php
- Timestamp:
- 02/07/2014 08:13:37 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r27057 r27115 281 281 $last_changed = wp_cache_get( 'last_changed', 'comment' ); 282 282 if ( ! $last_changed ) { 283 $last_changed = microtime( );283 $last_changed = microtime( true ); 284 284 wp_cache_set( 'last_changed', $last_changed, 'comment' ); 285 285 } … … 1561 1561 do_action( 'wp_insert_comment', $id, $comment ); 1562 1562 1563 wp_cache_set( 'last_changed', microtime( ), 'comment' );1563 wp_cache_set( 'last_changed', microtime( true ), 'comment' ); 1564 1564 1565 1565 return $id; … … 2361 2361 wp_cache_delete($id, 'comment'); 2362 2362 2363 wp_cache_set( 'last_changed', microtime( ), 'comment' );2363 wp_cache_set( 'last_changed', microtime( true ), 'comment' ); 2364 2364 } 2365 2365
Note: See TracChangeset
for help on using the changeset viewer.