Changeset 27300 for trunk/src/wp-includes/post.php
- Timestamp:
- 02/26/2014 10:04:52 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r27262 r27300 3734 3734 $last_changed = wp_cache_get( 'last_changed', 'posts' ); 3735 3735 if ( ! $last_changed ) { 3736 $last_changed = microtime( true);3736 $last_changed = microtime(); 3737 3737 wp_cache_set( 'last_changed', $last_changed, 'posts' ); 3738 3738 } … … 4755 4755 } 4756 4756 4757 wp_cache_set( 'last_changed', microtime( true), 'posts' );4757 wp_cache_set( 'last_changed', microtime(), 'posts' ); 4758 4758 } 4759 4759
Note: See TracChangeset
for help on using the changeset viewer.