Skip to content

Commit

Permalink
BUGFIX Fixed missing $properties arg to DatalessField::SmallFieldHolder
Browse files Browse the repository at this point in the history
  • Loading branch information
halkyon committed Apr 14, 2012
1 parent fc18b2c commit 7e3a698
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forms/DatalessField.php
Expand Up @@ -40,8 +40,8 @@ function FieldHolder($properties = array()) {
* 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);
}

/**
Expand Down

0 comments on commit 7e3a698

Please sign in to comment.