Fixed bug where \TamerLib > tm > run()
would return early even if the $timeout
is set to 0.
This commit is contained in:
parent
bc91147557
commit
54bc954830
2 changed files with 8 additions and 1 deletions
|
@ -740,7 +740,7 @@
|
|||
return;
|
||||
}
|
||||
|
||||
if((time() - $start_time) >= $timeout)
|
||||
if($timeout > 0 && (time() - $start_time) >= $timeout)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue