Ensure correct URL for the refresh container button

Shifted params no longer appear in the URL which is retrieved from the request object.
We now use Url::fromRequest() instead.
This commit is contained in:
Eric Lippmann 2016-07-13 10:24:30 +02:00
parent 4774db16ef
commit 42991b0756
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ EOT;
private function renderRefreshTab() private function renderRefreshTab()
{ {
$url = Icinga::app()->getRequest()->getUrl(); $url = Url::fromRequest();
$tab = $this->get($this->getActiveName()); $tab = $this->get($this->getActiveName());
if ($tab !== null) { if ($tab !== null) {