Skip to content

Commit

Permalink
Merge pull request #25285 from totten/master-sign-warning
Browse files Browse the repository at this point in the history
Status Check - Raise severity of the check for signing keys
  • Loading branch information
totten authored Jan 10, 2023
2 parents d7e9c82 + 1a1cccc commit 3cbcd5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CRM/Utils/Check/Component/Security.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ public function checkSigningKey(): array {
if (!$found) {
$messages[] = new CRM_Utils_Check_Message(
__FUNCTION__,
ts('Some components and extensions may need to generate cryptographic signatures. Please configure <a %1>CIVICRM_SIGN_KEYS</a>. ',
ts('The system requires a cryptographic signing key. Please configure <a %1>CIVICRM_SIGN_KEYS</a>. ',
[1 => 'href="https://docs.civicrm.org/sysadmin/en/latest/setup/secret-keys/" target="_blank"']
),
ts('Signing Key Recommended'),
\Psr\Log\LogLevel::NOTICE,
ts('Signing Key Required'),
\Psr\Log\LogLevel::ERROR,
'fa-lock'
);
}
Expand Down

0 comments on commit 3cbcd5e

Please sign in to comment.