From c0fddf262c99d68ac20162d07879c2a9320f09c9 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 2 Jan 2012 21:32:13 +0100 Subject: [PATCH] MINOR Fixed regression on missing return value in CompositeField->FieldHolder() --- forms/CompositeField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/CompositeField.php b/forms/CompositeField.php index 38209e304..75e9f388a 100644 --- a/forms/CompositeField.php +++ b/forms/CompositeField.php @@ -112,7 +112,7 @@ class CompositeField extends FormField { } } - $this->createTag('div', $this->getAttributes(), $content); + return $this->createTag('div', $this->getAttributes(), $content); } /**