try to read on default NO_CI

This commit is contained in:
Dennis Eichhorn 2020-06-18 20:00:06 +02:00
parent 27ca410b86
commit c24d5b9e70

View File

@ -122,7 +122,7 @@ final class HttpRequest extends RequestAbstract
private function initCurrentRequest() : void
{
$this->uri = HttpUri::fromCurrent();
$this->data = $_GET ?? [];
$this->data = ($_GET ?? []) + ($_POST ?? []);
$this->files = $_FILES ?? [];
$this->header->getL11n()->setLanguage($this->getRequestLanguage());