mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
Merge pull request #92 from simonwelsh/patch-1
BUG: $dataFields needs to be indexed by the field name
This commit is contained in:
commit
3335105ee2
@ -238,10 +238,7 @@ class GridFieldBulkActionEditHandler extends GridFieldBulkActionHandler
|
||||
|
||||
foreach ($editableFields as $fieldName)
|
||||
{
|
||||
array_push(
|
||||
$dataFields,
|
||||
$fields->dataFieldByName($fieldName)
|
||||
);
|
||||
$dataFields[$fieldName] = $fields->dataFieldByName($fieldName);
|
||||
}
|
||||
}
|
||||
else{
|
||||
|
Loading…
Reference in New Issue
Block a user