Browse Source

removed some comment bloat from the Form class.

Taylor Otwell 13 years ago
parent
commit
46b0a7d8ad
1 changed files with 0 additions and 3 deletions
  1. 0 3
      system/form.php

+ 0 - 3
system/form.php

@@ -34,9 +34,6 @@ class Form {
 
 
 		// If the request method is PUT or DELETE, create a hidden input element with the
 		// If the request method is PUT or DELETE, create a hidden input element with the
 		// request method in it since HTML forms do not support these two methods.
 		// request method in it since HTML forms do not support these two methods.
-		//
-		// The Request class will check for this hidden POST element when determining the
-		// request method. If it is present, it will override the real request method.
 		if ($method == 'PUT' or $method == 'DELETE')
 		if ($method == 'PUT' or $method == 'DELETE')
 		{
 		{
 			$html .= PHP_EOL.static::input('hidden', 'REQUEST_METHOD', $method);
 			$html .= PHP_EOL.static::input('hidden', 'REQUEST_METHOD', $method);