diff --git a/forms/Form.php b/forms/Form.php index 1ed29a32c..6394dd7bd 100755 --- a/forms/Form.php +++ b/forms/Form.php @@ -1101,9 +1101,9 @@ class Form extends RequestHandler { * than <% control FormObject %> */ function forTemplate() { - return $this->renderWith(array( - $this->getTemplate(), - 'Form' + return $this->renderWith(array_merge( + (array)$this->getTemplate(), + array('Form') )); }