Skip to content
Snippets Groups Projects
Commit f2f98854 authored by Dave Greenberg's avatar Dave Greenberg
Browse files

CRM-12562 Mis-named array item check in Batch.php was causing batch update to...

CRM-12562 Mis-named array item check in Batch.php was causing batch update to set participant role profile field as is_multiple (conditional on line 204 was checking for participant_role_id instead of participant_role).

----------------------------------------
* CRM-12562: Batch Update Participant Roles Not Set, Not Checkboxes, Data Overwritten
  http://issues.civicrm.org/jira/browse/CRM-12562
parent aca21e90
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,7 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task {
}
}
else {
if ($field['name'] == 'participant_role_id') {
if ($field['name'] == 'participant_role') {
$field['is_multiple'] = TRUE;
}
// handle non custom fields
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment