Fixed server cron problems when there is set only time from
This commit is contained in:
parent
2502944dea
commit
50569f187f
|
@ -1428,7 +1428,7 @@ sub cron_is_in_cron {
|
||||||
if ($elem_cron ne '*') {
|
if ($elem_cron ne '*') {
|
||||||
my ($down, $up) = cron_get_interval($elem_cron);
|
my ($down, $up) = cron_get_interval($elem_cron);
|
||||||
# Check if there is no a range
|
# Check if there is no a range
|
||||||
return 0 if (!defined($up) && ($down != $cron));
|
return 0 if (!defined($up) && ($down != $elem_curr_time));
|
||||||
# Check if there is on the range
|
# Check if there is on the range
|
||||||
if ($down < $up) {
|
if ($down < $up) {
|
||||||
return 0 if ($elem_curr_time < $down || $elem_curr_time > $up);
|
return 0 if ($elem_curr_time < $down || $elem_curr_time > $up);
|
||||||
|
|
Loading…
Reference in New Issue