mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Using FieldList instead of FieldSet on SelectionGroup to comply with parent implementation
This commit is contained in:
parent
475f3764c3
commit
639caea949
@ -46,9 +46,13 @@ class SelectionGroup extends CompositeField {
|
||||
$clone->setReadonly(true);
|
||||
return $clone;
|
||||
}
|
||||
|
||||
|
||||
function FieldSet() {
|
||||
$items = parent::FieldSet()->toArray();
|
||||
return $this->FieldList();
|
||||
}
|
||||
|
||||
function FieldList() {
|
||||
$items = parent::FieldList()->toArray();
|
||||
|
||||
$count = 0;
|
||||
$firstSelected = $checked ="";
|
||||
|
Loading…
Reference in New Issue
Block a user