aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCassio de Campos <cassiopc@gmail.com>2017-07-26 15:42:48 +0000
committerCassio de Campos <cassiopc@gmail.com>2017-07-26 15:42:48 +0000
commit458fb9e679bdec59f55193c1acd448beb54c29f7 (patch)
tree41085e39855097637c3d15c14d6c7bbad6d187f3 /src
parentabd32cf6624d56b23b0e39a93828c626b53d44db (diff)
downloadboca-458fb9e679bdec59f55193c1acd448beb54c29f7.tar.gz
boca-458fb9e679bdec59f55193c1acd448beb54c29f7.zip
bug fix
Diffstat (limited to 'src')
-rwxr-xr-xsrc/globals.php2
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 () {