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
@ -48,7 +48,11 @@ class SelectionGroup extends CompositeField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function FieldSet() {
|
function FieldSet() {
|
||||||
$items = parent::FieldSet()->toArray();
|
return $this->FieldList();
|
||||||
|
}
|
||||||
|
|
||||||
|
function FieldList() {
|
||||||
|
$items = parent::FieldList()->toArray();
|
||||||
|
|
||||||
$count = 0;
|
$count = 0;
|
||||||
$firstSelected = $checked ="";
|
$firstSelected = $checked ="";
|
||||||
|
Loading…
Reference in New Issue
Block a user