From 60ff3bf8408b2e940a0d7eea62295f24ceac8544 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 16 Jul 2011 10:22:57 -0500 Subject: [PATCH] add form::close. --- system/form.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/system/form.php b/system/form.php index 1b6bb1ff..2c912866 100644 --- a/system/form.php +++ b/system/form.php @@ -57,6 +57,16 @@ class Form { return static::open($action, $method, $attributes); } + /** + * Close a HTML form. + * + * @return string + */ + public static function close() + { + return ''; + } + /** * Generate a hidden field containing the current CSRF token. *