From e82896026c43bca24ecdf79c88198682c94ee788 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Tue, 30 Aug 2022 08:49:49 +0200 Subject: [PATCH] system: tweak validation message --- src/www/system_advanced_admin.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/www/system_advanced_admin.php b/src/www/system_advanced_admin.php index ebe2ca23b..a4438cfc1 100644 --- a/src/www/system_advanced_admin.php +++ b/src/www/system_advanced_admin.php @@ -140,9 +140,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { foreach ($ciphers as $cipher => $settings) { if ($settings['version'] == 'TLSv1.3' && in_array($cipher, $pconfig['ssl-ciphers']) && !in_array('TLS_AES_128_GCM_SHA256', $pconfig['ssl-ciphers'])) { - $input_errors[] = gettext( - "A TLS 1.3-compliant application MUST implement the TLS_AES_128_GCM_SHA256 according to rfc8446" - ); + $input_errors[] = gettext('A TLS 1.3-compliant application MUST implement the TLS_AES_128_GCM_SHA256 according to RFC 8446.'); break; } }