🐛 bug fix: wrong value for option values

This commit is contained in:
Marc Michalsky 2023-08-14 17:45:19 +02:00
parent e5ab52f24b
commit dc723ed8aa
Signed by untrusted user who does not match committer: marc.koch
GPG key ID: 12406554CFB028B9

View file

@ -243,7 +243,7 @@ class CRM_TwingleCampaign_BAO_CustomField {
[
'id' => $option_value_exists['values'][0]['id'],
'label' => $value,
'value' => $value,
'value' => $key,
]
);
}