Merge pull request #343 from skipperbent/v2-development

Version 2.6.8.1
This commit is contained in:
Simon Sessingø
2017-12-17 10:40:26 +01:00
committed by GitHub

View File

@@ -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()