From 16a2d251c9ccba0e67326d5f7a001e43d38f5d06 Mon Sep 17 00:00:00 2001 From: Pradeep Nayak Date: Thu, 9 May 2019 22:35:00 +0100 Subject: [PATCH] core/issues/923, Fixed notice error when creating/editing profile --- CRM/UF/Form/Group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/UF/Form/Group.php b/CRM/UF/Form/Group.php index 9a5dfbec8a..e9bf93e0f6 100644 --- a/CRM/UF/Form/Group.php +++ b/CRM/UF/Form/Group.php @@ -449,8 +449,8 @@ class CRM_UF_Form_Group extends CRM_Core_Form { */ protected function getOtherModuleString() { $otherModules = CRM_Core_BAO_UFGroup::getUFJoinRecord($this->_id, TRUE, TRUE); + $otherModuleString = NULL; if (!empty($otherModules)) { - $otherModuleString = NULL; foreach ($otherModules as $key) { $otherModuleString .= " [ x ] "; } -- 2.25.1