Revert [27115] and let cache backends handle the stripping of spaces in cache keys as necessary.

microtime() returns greater precision than microtime(true).

see #27000, #23448, #26903, #14485.


git-svn-id: https://develop.svn.wordpress.org/trunk@27300 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2014-02-26 22:04:52 +00:00
parent 0fc8021977
commit 6a35efe1e5
4 changed files with 8 additions and 8 deletions

View File

@@ -985,7 +985,7 @@ function wp_get_archives($args = '') {
$last_changed = wp_cache_get( 'last_changed', 'posts' );
if ( ! $last_changed ) {
$last_changed = microtime( true );
$last_changed = microtime();
wp_cache_set( 'last_changed', $last_changed, 'posts' );
}