Browse Source

added check for array in Request::spoofed.

Taylor Otwell 13 years ago
parent
commit
ceb0e1a807
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/request.php

+ 1 - 1
system/request.php

@@ -86,7 +86,7 @@ class Request {
 	 */
 	 */
 	public static function spoofed()
 	public static function spoofed()
 	{
 	{
-		return array_key_exists('REQUEST_METHOD', $_POST);
+		return is_array($_POST) and array_key_exists('REQUEST_METHOD', $_POST);
 	}
 	}
 
 
 	/**
 	/**