mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #7523 from nextcloud/check_empty_content_length
Also check for empty content length
This commit is contained in:
commit
cfb3f44459
1 changed files with 1 additions and 0 deletions
|
|
@ -406,6 +406,7 @@ class Request implements \ArrayAccess, \Countable, IRequest {
|
|||
if ($this->method === 'PUT'
|
||||
&& $this->getHeader('Content-Length') !== 0
|
||||
&& $this->getHeader('Content-Length') !== null
|
||||
&& $this->getHeader('Content-Length') !== ''
|
||||
&& strpos($this->getHeader('Content-Type'), 'application/x-www-form-urlencoded') === false
|
||||
&& strpos($this->getHeader('Content-Type'), 'application/json') === false
|
||||
) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue