From 47f4a3ba2b4cfe72dfd89902790cdbf69a5055e0 Mon Sep 17 00:00:00 2001 From: yashodha Date: Tue, 3 Nov 2020 15:48:09 +0530 Subject: [PATCH] (dev/core#2153) BUG: when changing a custom group option value CiviCRM does not update existing records --- CRM/Custom/Form/Option.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Custom/Form/Option.php b/CRM/Custom/Form/Option.php index 05f6dcd81e..c9bec74616 100644 --- a/CRM/Custom/Form/Option.php +++ b/CRM/Custom/Form/Option.php @@ -483,6 +483,7 @@ SELECT count(*) } } + CRM_Core_BAO_CustomOption::updateValue($customOption->id, $customOption->value); $customOption->save(); $msg = ts('Your multiple choice option \'%1\' has been saved', [1 => $customOption->label]); -- 2.25.1