Changeset 27115 for trunk/src/wp-includes/post.php
- Timestamp:
- 02/07/2014 08:13:37 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r27081 r27115 3750 3750 $last_changed = wp_cache_get( 'last_changed', 'posts' ); 3751 3751 if ( ! $last_changed ) { 3752 $last_changed = microtime( );3752 $last_changed = microtime( true ); 3753 3753 wp_cache_set( 'last_changed', $last_changed, 'posts' ); 3754 3754 } … … 4764 4764 } 4765 4765 4766 wp_cache_set( 'last_changed', microtime( ), 'posts' );4766 wp_cache_set( 'last_changed', microtime( true ), 'posts' ); 4767 4767 } 4768 4768
Note: See TracChangeset
for help on using the changeset viewer.