From 240c0ebdc7da424a40627636dd235d6381877328 Mon Sep 17 00:00:00 2001 From: madhavimalgaonkar Date: Fri, 7 Sep 2018 18:56:52 +0530 Subject: [PATCH] Added warning while disabling groups --- CRM/Admin/Page/AJAX.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Admin/Page/AJAX.php b/CRM/Admin/Page/AJAX.php index 1fef6d99e8..15761b1d79 100644 --- a/CRM/Admin/Page/AJAX.php +++ b/CRM/Admin/Page/AJAX.php @@ -203,6 +203,7 @@ class CRM_Admin_Page_AJAX { case 'CRM_Contact_BAO_Group': $ret['content'] = ts('Are you sure you want to disable this Group?'); + $ret['content'] .= '

' . ts('WARNING - Disabling this group will disable all the child groups associated if any.') . ''; break; case 'CRM_Core_BAO_OptionGroup': -- 2.25.1