Browse Source

fix handling of HEAD http requests.

Taylor Otwell 13 years ago
parent
commit
f624a6849f
2 changed files with 12 additions and 1 deletions
  1. 5 0
      laravel/request.php
  2. 7 1
      laravel/routing/router.php

+ 5 - 0
laravel/request.php

@@ -33,6 +33,11 @@ class Request {
 	 */
 	public static function method()
 	{
+		if ($_SERVER['REQUEST_METHOD'] == 'HEAD')
+		{
+			return 'GET';
+		}
+
 		return (static::spoofed()) ? $_POST[Request::spoofer] : $_SERVER['REQUEST_METHOD'];
 	}
 

+ 7 - 1
laravel/routing/router.php

@@ -26,7 +26,13 @@ class Router {
 	 *
 	 * @var array
 	 */
-	public static $routes = array();
+	public static $routes = array(
+		'GET'    => array(),
+		'POST'   => array(),
+		'PUT'    => array(),
+		'DELETE' => array(),
+		'HEAD'   => array(),
+	);
 
 	/**
 	 * All of the "fallback" routes that have been registered.