From 994b9e9f107ba75ba3d3c71c8da74e02e3b91b65 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sat, 15 Nov 2014 22:10:04 -0500 Subject: [PATCH] CRM-15603 - Standardize phrasing of 'You do not have permission to access this contact.' --- CRM/Contact/Page/View/UserDashBoard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contact/Page/View/UserDashBoard.php b/CRM/Contact/Page/View/UserDashBoard.php index 98b180b7e4..7648a1d200 100644 --- a/CRM/Contact/Page/View/UserDashBoard.php +++ b/CRM/Contact/Page/View/UserDashBoard.php @@ -80,7 +80,7 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page { } elseif ($this->_contactId != $userID) { if (!CRM_Contact_BAO_Contact_Permission::allow($this->_contactId, CRM_Core_Permission::VIEW)) { - CRM_Core_Error::fatal(ts('You do not have permission to view this contact')); + CRM_Core_Error::fatal(ts('You do not have permission to access this contact.')); } if (!CRM_Contact_BAO_Contact_Permission::allow($this->_contactId, CRM_Core_Permission::EDIT)) { $this->_edit = FALSE; -- 2.25.1