mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
fixed typo causing no next execution to be found, and therefore periodic jobs to be terminated
This commit is contained in:
parent
c013b68772
commit
3253a191b7
@ -302,7 +302,7 @@ class asyncservice
|
|||||||
if (!isset($found[$u])) // we have to try the next one, if it exists
|
if (!isset($found[$u])) // we have to try the next one, if it exists
|
||||||
{
|
{
|
||||||
$nexts = array_keys($units);
|
$nexts = array_keys($units);
|
||||||
if (!isset($next[count($found)-1]))
|
if (!isset($nexts[count($found)-1]))
|
||||||
{
|
{
|
||||||
if ($this->debug) echo "<p>Nothing found, exiting !!!</p>\n";
|
if ($this->debug) echo "<p>Nothing found, exiting !!!</p>\n";
|
||||||
return False;
|
return False;
|
||||||
|
Loading…
Reference in New Issue
Block a user