From 59fa681de171b762dffed547ea11dcbb70b75144 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 14 Jun 2011 11:13:32 -0700 Subject: [PATCH] Fix tabs on Form close method. --- system/form.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/system/form.php b/system/form.php index 376acff0..e8dffc8e 100644 --- a/system/form.php +++ b/system/form.php @@ -278,16 +278,6 @@ 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 ''.PHP_EOL; - } - /** * Create a HTML input element. * @@ -306,4 +296,14 @@ private static function input($type, $name, $value = null, $attributes = array() return ''.PHP_EOL; } + /** + * Close a HTML form. + * + * @return void + */ + public static function close() + { + return ''.PHP_EOL; + } + } \ No newline at end of file