mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-09 21:48:41 +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('/', $this->uri->getPath());
|
||||||
UriFactory::setQuery(':user', $this->uri->getUser());
|
UriFactory::setQuery(':user', $this->uri->getUser());
|
||||||
UriFactory::setQuery(':pass', $this->uri->getPass());
|
UriFactory::setQuery(':pass', $this->uri->getPass());
|
||||||
|
|
||||||
|
foreach($this->data as $key => $value) {
|
||||||
|
UriFactory::setQuery('?' . $key, $value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user