diff --git a/library/Icinga/Web/Widget/Dashboard/Component.php b/library/Icinga/Web/Widget/Dashboard/Component.php index 6b355e3e0..d06e20546 100644 --- a/library/Icinga/Web/Widget/Dashboard/Component.php +++ b/library/Icinga/Web/Widget/Dashboard/Component.php @@ -171,7 +171,7 @@ EOD; $html = str_replace('{URL}', $url, $this->template); $html = str_replace('{IFRAME_URL}', $iframeUrl, $html); - $html = str_replace('{FULL_URL}', $url->getUrlWithout('view'), $html); + $html = str_replace('{FULL_URL}', $url->getUrlWithout(array('view', 'limit')), $html); $html = str_replace('{REMOVE_BTN}', $this->getRemoveForm($view), $html); $html = str_replace('{TITLE}', $view->escape($this->getTitle()), $html); $html = str_replace('{REMOVE}', $this->getRemoveForm(), $html);