One less variable assignment in timer_start and timer_start. props hakre fixes #12389
git-svn-id: https://develop.svn.wordpress.org/trunk@13436 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
6afc78b158
commit
b20651cc65
|
@ -179,8 +179,7 @@ function wp_maintenance() {
|
|||
function timer_start() {
|
||||
global $timestart;
|
||||
$mtime = explode( ' ', microtime() );
|
||||
$mtime = $mtime[1] + $mtime[0];
|
||||
$timestart = $mtime;
|
||||
$timestart = $mtime[1] + $mtime[0];
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -212,8 +211,7 @@ function timer_stop( $display = 0, $precision = 3 ) { // if called like timer_st
|
|||
global $timestart, $timeend;
|
||||
$mtime = microtime();
|
||||
$mtime = explode( ' ', $mtime );
|
||||
$mtime = $mtime[1] + $mtime[0];
|
||||
$timeend = $mtime;
|
||||
$timeend = $mtime[1] + $mtime[0];
|
||||
$timetotal = $timeend - $timestart;
|
||||
$r = ( function_exists( 'number_format_i18n' ) ) ? number_format_i18n( $timetotal, $precision ) : number_format( $timetotal, $precision );
|
||||
if ( $display )
|
||||
|
|
Loading…
Reference in New Issue