From afd110a6eda0e908b983a3ad5ce74c4dc049019c Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Wed, 3 Jan 2024 07:35:28 +0100 Subject: [PATCH] use correct regex for dnscheck-resolver; fixes #1220 Signed-off-by: Michael Kaufmann --- actions/admin/settings/131.ssl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/admin/settings/131.ssl.php b/actions/admin/settings/131.ssl.php index 023f10a8..20a9f409 100644 --- a/actions/admin/settings/131.ssl.php +++ b/actions/admin/settings/131.ssl.php @@ -248,7 +248,7 @@ return [ 'settinggroup' => 'system', 'varname' => 'le_domain_dnscheck_resolver', 'type' => 'text', - 'string_regexp' => '/^(([0-9]+ [a-z0-9\-\._]+, ?)*[0-9]+ [a-z0-9\-\._]+)?$/i', + 'string_regexp' => '/^(([a-z0-9\-\._]+, ?)*[a-z0-9\-\._]+)?$/i', 'string_emptyallowed' => true, 'default' => '', 'save_method' => 'storeSettingField'