diff --git a/forms/CompositeField.php b/forms/CompositeField.php index 3d68ccfea..184fb848e 100755 --- a/forms/CompositeField.php +++ b/forms/CompositeField.php @@ -127,6 +127,9 @@ class CompositeField extends FormField { function isComposite() { return true; } function hasData() { return false; } + public function fieldByName($name) { + return $this->children->fieldByName($name); + } /** * Add a new child field to the end of the set. */