2
0
forked from Wavyzz/dolibarr

Fix: A cast statement must be followed by a single space

This commit is contained in:
Regis Houssin
2011-09-20 12:29:00 +00:00
parent 5799323ec8
commit a9ac675393
6 changed files with 9 additions and 9 deletions

View File

@@ -3662,7 +3662,7 @@ function dol_nboflines_bis($text,$maxlinesize=0,$charset='UTF-8')
function dol_microtime_float()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
return ((float) $usec + (float) $sec);
}
/**