fix error services items pandora_enterprise#8522
This commit is contained in:
parent
93e9992b19
commit
1e9ca202f0
|
@ -5996,6 +5996,18 @@ function send_test_email(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Microtime float number.
|
||||||
|
*
|
||||||
|
* @return float
|
||||||
|
*/
|
||||||
|
function microtime_float()
|
||||||
|
{
|
||||||
|
list($usec, $sec) = explode(' ', microtime());
|
||||||
|
return ((float) $usec + (float) $sec);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return array of ancestors of item, given array.
|
* Return array of ancestors of item, given array.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue