Commit 57f61dc5 authored by Taylor Otwell's avatar Taylor Otwell

Formatting Input class.

parent 2a1c01f1
...@@ -103,10 +103,8 @@ class Input { ...@@ -103,10 +103,8 @@ class Input {
case 'PUT': case 'PUT':
case 'DELETE': case 'DELETE':
// The request method can be spoofed by specifying a "REQUEST_METHOD" in the $_POST array. // The request method can be spoofed by specifying a "REQUEST_METHOD" in the $_POST array.
// If the method is being spoofed, the $_POST array will be considered the input. // If the method is being spoofed, the $_POST array will be considered the input.
if (isset($_POST['REQUEST_METHOD']) and in_array($_POST['REQUEST_METHOD'], array('PUT', 'DELETE'))) if (isset($_POST['REQUEST_METHOD']) and in_array($_POST['REQUEST_METHOD'], array('PUT', 'DELETE')))
{ {
static::$input =& $_POST; static::$input =& $_POST;
......
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