dev/drupal#153 include name when fetching UFGroups so validation can use it
authorHerb v/d Dool <herb@3speedhub.com>
Thu, 12 Jan 2023 17:04:29 +0000 (12:04 -0500)
committerHerb v/d Dool <herb@3speedhub.com>
Thu, 12 Jan 2023 17:04:29 +0000 (12:04 -0500)
CRM/Core/BAO/UFGroup.php

index e9bbdadb34998e4e1a7c047a301147bdb16d75df..2734474898b47ddff32bd2a8798831ecfa4ce067 100644 (file)
@@ -1672,7 +1672,7 @@ AND    ( entity_id IS NULL OR entity_id <= 0 )
    *   array of ufgroups for a module
    */
   public static function getModuleUFGroup($moduleName = NULL, $count = 0, $skipPermission = TRUE, $op = CRM_Core_Permission::VIEW, $returnFields = NULL) {
-    $selectFields = ['id', 'title', 'created_id', 'is_active', 'is_reserved', 'group_type', 'description'];
+    $selectFields = ['id', 'name', 'title', 'created_id', 'is_active', 'is_reserved', 'group_type', 'description'];
 
     if (CRM_Core_BAO_SchemaHandler::checkIfFieldExists('civicrm_uf_group', 'frontend_title')) {
       $selectFields[] = 'frontend_title';