Fixed incorrect handling of microtime

This commit is contained in:
Andreas Oesterreicher
2017-07-03 18:31:48 +02:00
parent a06f54ca8a
commit 4dd46fc55f
14 changed files with 398 additions and 410 deletions
+1 -3
View File
@@ -27,7 +27,7 @@ header("Pragma: no-cache");
require_once('../config/vilesci.config.inc.php');
$SOAPServer = new SoapServer(APP_ROOT."soap/test.wsdl.php?".microtime());
$SOAPServer = new SoapServer(APP_ROOT."soap/test.wsdl.php?".microtime(true));
$SOAPServer->addFunction("myTest");
$SOAPServer->handle();
@@ -44,5 +44,3 @@ function myTest($foo)
}
?>