diff --git a/src/Pecee/Http/Request.php b/src/Pecee/Http/Request.php index eb2fe26..9db7afe 100644 --- a/src/Pecee/Http/Request.php +++ b/src/Pecee/Http/Request.php @@ -18,7 +18,7 @@ class Request $this->host = $this->getHeader('http-host'); $this->uri = $this->getHeader('request-uri'); $this->input = new Input($this); - $this->method = strtolower($this->input->get('_method', $this->getHeader('request-method'), 'post')); + $this->method = strtolower($this->input->get('_method', $this->getHeader('request-method'))); } protected function parseHeaders()