From e3f74f651842be35352a3b114262dfb8f4f3434c Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Fri, 15 Oct 2021 16:23:02 +0100 Subject: [PATCH] Remove reference to CiviCRM forum in HTTP error message Replace with instruction to contact the site administrator for assistance. --- CRM/Extension/Browser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Extension/Browser.php b/CRM/Extension/Browser.php index ff173a54a3..f421cb363d 100644 --- a/CRM/Extension/Browser.php +++ b/CRM/Extension/Browser.php @@ -243,7 +243,7 @@ class CRM_Extension_Browser { restore_error_handler(); if ($status !== CRM_Utils_HttpClient::STATUS_OK) { - throw new CRM_Extension_Exception(ts('The CiviCRM public extensions directory at %1 could not be contacted - please check your webserver can make external HTTP requests or contact CiviCRM team on CiviCRM forum.', array(1 => $this->getRepositoryUrl())), 'connection_error'); + throw new CRM_Extension_Exception(ts('The CiviCRM public extensions directory at %1 could not be contacted - please check your webserver can make external HTTP requests. Contact your site administrator for assistance.'), 'connection_error'); } // Don't call grabCachedJson here, that would risk infinite recursion -- 2.25.1