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