mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX Fixed missing $properties arg to DatalessField::SmallFieldHolder
This commit is contained in:
parent
fc18b2c788
commit
7e3a698d56
@ -40,8 +40,8 @@ class DatalessField extends FormField {
|
||||
* Returns the field's representation in a field group.
|
||||
* For dataless fields, this defaults to $Field.
|
||||
*/
|
||||
function SmallFieldHolder() {
|
||||
return $this->Field();
|
||||
function SmallFieldHolder($properties = array()) {
|
||||
return $this->Field($properties);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user