diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-07-26 15:42:48 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-07-26 15:42:48 +0000 |
| commit | 458fb9e679bdec59f55193c1acd448beb54c29f7 (patch) | |
| tree | 41085e39855097637c3d15c14d6c7bbad6d187f3 /src/globals.php | |
| parent | abd32cf6624d56b23b0e39a93828c626b53d44db (diff) | |
| download | boca-458fb9e679bdec59f55193c1acd448beb54c29f7.tar.gz boca-458fb9e679bdec59f55193c1acd448beb54c29f7.zip | |
bug fix
Diffstat (limited to 'src/globals.php')
| -rwxr-xr-x | src/globals.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/globals.php b/src/globals.php index 2391a8f..e475f57 100755 --- a/src/globals.php +++ b/src/globals.php @@ -263,7 +263,7 @@ function mymtime() { } function myunique() { list($usec, $sec) = explode(" ", microtime()); - return (int) ((int)($usec * 100)) + ($sec % 1000000); + return (int) (((int)($usec * 100)) + (((int)$sec) % 1000000)); } //retorna data e hora atuais function now () { |