Browse Source

Continuing to clean up Input class.

Taylor Otwell 13 years ago
parent
commit
6fc0770bce
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/input.php

+ 2 - 0
system/input.php

@@ -103,8 +103,10 @@ class Input {
 
 			case 'PUT':
 			case 'DELETE':
+
 				// 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 (isset($_POST['REQUEST_METHOD']) and in_array($_POST['REQUEST_METHOD'], array('PUT', 'DELETE')))
 				{
 					static::$input =& $_POST;