From 7abba9861bf619b75705d896cf1244cbd4b6295d Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 4 Feb 2021 16:49:33 -0800 Subject: [PATCH] CRM_Core_Permission_List - Tweak labels for `*always allow*` and `*always deny*` --- CRM/Core/Permission/List.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Core/Permission/List.php b/CRM/Core/Permission/List.php index d23ad5091c..5138286303 100644 --- a/CRM/Core/Permission/List.php +++ b/CRM/Core/Permission/List.php @@ -86,12 +86,12 @@ class CRM_Core_Permission_List { // There are a handful of special permissions defined in CRM/Core/Permission. $e->permissions[\CRM_Core_Permission::ALWAYS_DENY_PERMISSION] = [ 'group' => 'const', - 'title' => ts('Constant: Always deny'), + 'title' => ts('Generic: Deny all users'), 'is_synthetic' => TRUE, ]; $e->permissions[\CRM_Core_Permission::ALWAYS_ALLOW_PERMISSION] = [ 'group' => 'const', - 'title' => ts('Constant: Always allow'), + 'title' => ts('Generic: Allow all users (including anonymous)'), 'is_synthetic' => TRUE, ]; } -- 2.25.1