From 180bae826a6ba605cf23e6c10d48f76cf4264d34 Mon Sep 17 00:00:00 2001 From: Martijn Date: Thu, 2 Jan 2014 10:44:00 +0100 Subject: [PATCH] formHtmlContent() uses missing FormEncType() call it needs to call $this->getEncType() instead.. --- forms/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/Form.php b/forms/Form.php index 537b36fd5..f2b3ee7d6 100644 --- a/forms/Form.php +++ b/forms/Form.php @@ -1351,7 +1351,7 @@ class Form extends RequestHandler { . " value=\"" . $this->FormAction() . "\" />\n"; $content .= "FormName() . "\" />\n"; $content .= "FormMethod() . "\" />\n"; - $content .= "FormEncType() . "\" />\n"; + $content .= "getEncType() . "\" />\n"; return $content; }