From 3e173644c7459e39aaa39fd1426adf23dd877f8f Mon Sep 17 00:00:00 2001 From: Dan Elsasser <122316221+delsassergh@users.noreply.github.com> Date: Fri, 17 Apr 2026 10:41:06 -0500 Subject: [PATCH] Fix cron job syntax for DNS check One of the * was gobbled up in the example cron string for DNS Check. Would cause cron edit to fail. Restored. --- app/Views/settings/index.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Views/settings/index.twig b/app/Views/settings/index.twig index 72cb9ff..65a56b9 100644 --- a/app/Views/settings/index.twig +++ b/app/Views/settings/index.twig @@ -819,7 +819,7 @@

DNS check (every 6 hours)

- 0 0,6,12,18 * * php {{ cronPath|replace({'check_domains.php': 'check_dns.php'}) }} + 0 0,6,12,18 * * * php {{ cronPath|replace({'check_domains.php': 'check_dns.php'}) }}