From abbea6f002df23419cd0115adbb556ccfd0fe80e Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 20 Mar 2023 23:09:44 -0400 Subject: [PATCH] spelling: and Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Core/Worker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Worker.php b/src/Core/Worker.php index 70ba0ffe4..9d964e7ba 100644 --- a/src/Core/Worker.php +++ b/src/Core/Worker.php @@ -1422,7 +1422,7 @@ class Worker */ public static function isInMaintenanceWindow(bool $check_last_execution = false): bool { - // Calculate the seconds of the start end end of the maintenance window + // Calculate the seconds of the start and end of the maintenance window $start = strtotime(DI::config()->get('system', 'maintenance_start')) % 86400; $end = strtotime(DI::config()->get('system', 'maintenance_end')) % 86400;