Commit cb306c90 authored by Taylor Otwell's avatar Taylor Otwell

fixing a few bugs in the form class.

parent 531454a2
...@@ -45,6 +45,8 @@ class Form { ...@@ -45,6 +45,8 @@ class Form {
*/ */
public static function open($action = null, $method = 'POST', $attributes = array(), $https = false) public static function open($action = null, $method = 'POST', $attributes = array(), $https = false)
{ {
$method = strtoupper($method);
$attributes['method'] = static::method($method); $attributes['method'] = static::method($method);
$attributes['action'] = static::action($action, $https); $attributes['action'] = static::action($action, $https);
...@@ -75,7 +77,7 @@ class Form { ...@@ -75,7 +77,7 @@ class Form {
*/ */
protected static function method($method) protected static function method($method)
{ {
return strtoupper(($method == 'PUT' or $method == 'DELETE') ? 'POST' : $method); return ($method !== 'GET') ? 'POST' : $method;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment