Browse Source

Fix tabs on Form close method.

Taylor Otwell 14 years ago
parent
commit
59fa681de1
1 changed files with 10 additions and 10 deletions
  1. 10 10
      system/form.php

+ 10 - 10
system/form.php

@@ -278,16 +278,6 @@ class Form {
 		return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
 	}
 
-   /**
-    * Close a HTML form
-    * 
-    * @return string
-    */
-   public static function close()
-   {
-      return '</form>'.PHP_EOL;
-   }
-
 	/**
 	 * Create a HTML input element.
 	 *
@@ -306,4 +296,14 @@ class Form {
 		return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
 	}
 
+	/**
+	 * Close a HTML form.
+	 *
+	 * @return void
+	 */
+	public static function close()
+	{
+		return '</form>'.PHP_EOL;
+	}
+
 }