Verified Commit 328e10a8 authored by dockx thibault's avatar dockx thibault
Browse files

:ambulance: Fix typo

Showing with 1 addition and 1 deletion
+1 -1
...@@ -203,7 +203,7 @@ class TaskGateway ...@@ -203,7 +203,7 @@ class TaskGateway
case 'Hourly' : case 'Hourly' :
// When checking for hourly schedules, consider both the days and hours // When checking for hourly schedules, consider both the days and hours
$totalHours = $interval->days * 24 + $interval->h; $totalHours = $interval->days * 24 + $interval->h;
if ($totalHours>= 1) { if ($totalHours >= 1) {
$result[$task['dn']]['result'] = $webservice->activateCyclicTasks($task['dn']); $result[$task['dn']]['result'] = $webservice->activateCyclicTasks($task['dn']);
} else { } else {
$result[$task['dn']]['lastExecFailed'] = 'This cyclic task has yet to reached its next execution cycle.'; $result[$task['dn']]['lastExecFailed'] = 'This cyclic task has yet to reached its next execution cycle.';
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment