Merge pull request #121 from cuonic/master

Fixed problem with Request Json array
pull/125/head
Mike Cao 11 years ago
commit 041070b44e

@ -185,9 +185,14 @@ class Request {
$this->query->setData($_GET);
}
if ($this->type == 'application/json' && $this->body != '') {
if (strpos($this->type, 'application/json') === 0 && $this->body != '') {
$this->json = json_decode($this->body, true);
} else {
$this->json = array();
}
$this->json = new Collection($this->json);
}
/**

Loading…
Cancel
Save