fix problem where 0 is not recognized as get value

This commit is contained in:
msquare 2017-07-23 12:02:37 +02:00
parent a157004f4a
commit 908f5712cc
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ class Request
{
$data = $this->request + $this->query;
if (!empty($data[$key])) {
if (isset($data[$key])) {
return $data[$key];
}
@ -84,7 +84,7 @@ class Request
{
$value = $this->input($key);
return !empty($value);
return !(empty($value) && strlen($value) == 0);
}
/**