Browse Source

adding some comments to the form class.

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

+ 5 - 0
system/form.php

@@ -25,6 +25,11 @@ class Form {
 		}
 
 		$attributes['action'] = HTML::entities(URL::to($action));
+
+		// -------------------------------------------------------
+		// If the request method is PUT or DELETE, we'll default
+		// the request method to POST.
+		// -------------------------------------------------------
 		$attributes['method'] = ($method == 'GET' or $method == 'POST') ? $method : 'POST';
 
 		// -------------------------------------------------------