Browse Source

Moved Form::close next to Form::open.

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

+ 10 - 10
system/form.php

@@ -53,6 +53,16 @@ class Form {
 		return $html.PHP_EOL;
 	}
 
+	/**
+	 * Close a HTML form.
+	 *
+	 * @return void
+	 */
+	public static function close()
+	{
+		return '</form>'.PHP_EOL;
+	}
+
 	/**
 	 * Generate a hidden field containing the current CSRF token.
 	 *
@@ -296,14 +306,4 @@ class Form {
 		return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
 	}
 
-	/**
-	 * Close a HTML form.
-	 *
-	 * @return void
-	 */
-	public static function close()
-	{
-		return '</form>'.PHP_EOL;
-	}
-
 }