Commit 36c29637 by Carsten Brandt

remove _method param from rest params

parent 813a008d
...@@ -283,6 +283,7 @@ class Request extends \yii\base\Request ...@@ -283,6 +283,7 @@ class Request extends \yii\base\Request
$contentType = $this->getContentType(); $contentType = $this->getContentType();
if (isset($_POST[$this->restVar])) { if (isset($_POST[$this->restVar])) {
$this->_restParams = $_POST; $this->_restParams = $_POST;
unset($this->_restParams[$this->restVar]);
} elseif (isset($this->parsers[$contentType])) { } elseif (isset($this->parsers[$contentType])) {
$parser = Yii::createObject($this->parsers[$contentType]); $parser = Yii::createObject($this->parsers[$contentType]);
if (!($parser instanceof RequestParserInterface)) { if (!($parser instanceof RequestParserInterface)) {
...@@ -860,7 +861,7 @@ class Request extends \yii\base\Request ...@@ -860,7 +861,7 @@ class Request extends \yii\base\Request
} }
/** /**
* Returns request content-type * Returns request content-type
* The Content-Type header field indicates the MIME type of the data * The Content-Type header field indicates the MIME type of the data
* contained in [[getRawBody()]] or, in the case of the HEAD method, the * contained in [[getRawBody()]] or, in the case of the HEAD method, the
* media type that would have been sent had the request been a GET. * media type that would have been sent had the request been a GET.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment