From: Roland Häder Date: Sun, 16 Aug 2009 01:03:15 +0000 (+0000) Subject: Opps... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=6152ea7da6f647b5c106593521401c0bc228d511 Opps... --- diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index cb52a1c3..e3001112 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -1145,7 +1145,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { // Idle so long with found function if (function_exists('time_sleep_until')) { // Get current time and add idle time - $sleepUntil = $this->getMilliTime() + $milliSeconds; + $sleepUntil = $this->getMilliTime() + $milliSeconds / 1000; // New PHP 5.1.0 function found $hasSlept = time_sleep_until($sleepUntil);