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.
This commit is contained in:
Dan Elsasser
2026-04-17 10:41:06 -05:00
committed by GitHub
parent 62a034c0db
commit 3e173644c7

View File

@@ -819,7 +819,7 @@
<div>
<p class="text-xs text-gray-500 dark:text-slate-400 mb-1">DNS check (every 6 hours)</p>
<div class="bg-gray-900 text-gray-100 px-4 py-3 rounded-lg font-mono text-sm break-all">
<code>0 0,6,12,18 * * php {{ cronPath|replace({'check_domains.php': 'check_dns.php'}) }}</code>
<code>0 0,6,12,18 * * * php {{ cronPath|replace({'check_domains.php': 'check_dns.php'}) }}</code>
</div>
</div>
<div>