We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28c5fbd commit e2a407dCopy full SHA for e2a407d
application/libraries/REST_Controller.php
@@ -1432,8 +1432,9 @@ protected function _parse_put()
1432
if ($this->request->format)
1433
{
1434
$this->request->body = $this->input->raw_input_stream;
1435
- if ($this->request->format === 'json') {
1436
- $this->_put_args = json_decode($this->input->raw_input_stream);
+ if ($this->request->format === 'json')
+ {
1437
+ $this->_put_args = json_decode($this->input->raw_input_stream);
1438
}
1439
1440
else if ($this->input->method() === 'put')
0 commit comments