Commit 36c29637 by Carsten Brandt

remove _method param from rest params

parent 813a008d
......@@ -283,6 +283,7 @@ class Request extends \yii\base\Request
$contentType = $this->getContentType();
if (isset($_POST[$this->restVar])) {
$this->_restParams = $_POST;
unset($this->_restParams[$this->restVar]);
} elseif (isset($this->parsers[$contentType])) {
$parser = Yii::createObject($this->parsers[$contentType]);
if (!($parser instanceof RequestParserInterface)) {
......
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