Changeset 27300 for trunk/src/wp-includes/comment.php
- Timestamp:
- 02/26/2014 10:04:52 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/comment.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r27262 r27300 281 281 $last_changed = wp_cache_get( 'last_changed', 'comment' ); 282 282 if ( ! $last_changed ) { 283 $last_changed = microtime( true);283 $last_changed = microtime(); 284 284 wp_cache_set( 'last_changed', $last_changed, 'comment' ); 285 285 } … … 1564 1564 do_action( 'wp_insert_comment', $id, $comment ); 1565 1565 1566 wp_cache_set( 'last_changed', microtime( true), 'comment' );1566 wp_cache_set( 'last_changed', microtime(), 'comment' ); 1567 1567 1568 1568 return $id; … … 2362 2362 wp_cache_delete($id, 'comment'); 2363 2363 2364 wp_cache_set( 'last_changed', microtime( true), 'comment' );2364 wp_cache_set( 'last_changed', microtime(), 'comment' ); 2365 2365 } 2366 2366
Note: See TracChangeset
for help on using the changeset viewer.