BUGFIX Fixed missing $properties arg to DatalessField::SmallFieldHolder

This commit is contained in:
Sean Harvey 2012-04-14 23:40:03 +12:00
parent fc18b2c788
commit 7e3a698d56

View File

@ -40,8 +40,8 @@ class DatalessField extends FormField {
* Returns the field's representation in a field group. * Returns the field's representation in a field group.
* For dataless fields, this defaults to $Field. * For dataless fields, this defaults to $Field.
*/ */
function SmallFieldHolder() { function SmallFieldHolder($properties = array()) {
return $this->Field(); return $this->Field($properties);
} }
/** /**