mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-20 05:18:42 +00:00
Add query parameters to uriFactory
This commit is contained in:
parent
9c708c921f
commit
d6126b1ffc
|
|
@ -211,6 +211,10 @@ class Request extends RequestAbstract
|
|||
UriFactory::setQuery('/', $this->uri->getPath());
|
||||
UriFactory::setQuery(':user', $this->uri->getUser());
|
||||
UriFactory::setQuery(':pass', $this->uri->getPass());
|
||||
|
||||
foreach($this->data as $key => $value) {
|
||||
UriFactory::setQuery('?' . $key, $value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user