From 279983b0792075cf37289a2aeadcecf39773718c Mon Sep 17 00:00:00 2001 From: Michael Hasselbring Date: Tue, 14 Jun 2011 10:27:05 -0500 Subject: [PATCH] add form method to form --- system/form.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/system/form.php b/system/form.php index b596216c..3ba8d407 100644 --- a/system/form.php +++ b/system/form.php @@ -252,6 +252,16 @@ public static function select($name, $options = array(), $selected = null, $attr return ''.implode('', $html_options).''.PHP_EOL; } + /** + * Close a HTML form + * + * @return string + */ + public static function close() + { + return ''; + } + /** * Create a HTML input element. *