mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
parent
3c90c2d3e5
commit
abbf486ed4
6 changed files with 6 additions and 6 deletions
|
|
@ -88,7 +88,7 @@ class CommentsController extends Controller
|
|||
|
||||
if ($compact) {
|
||||
$this->addContent(
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit'])))
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit', 'view'])))
|
||||
->setBaseTarget('_next')
|
||||
->setAttribute('title', sprintf(
|
||||
t('Show all %d comments'),
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ class DowntimesController extends Controller
|
|||
|
||||
if ($compact) {
|
||||
$this->addContent(
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit'])))
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit', 'view'])))
|
||||
->setBaseTarget('_next')
|
||||
->setAttribute('title', sprintf(
|
||||
t('Show all %d downtimes'),
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ class HostgroupsController extends Controller
|
|||
|
||||
if ($compact) {
|
||||
$this->addContent(
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit'])))
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit', 'view'])))
|
||||
->setBaseTarget('_next')
|
||||
->setAttribute('title', sprintf(
|
||||
t('Show all %d hostgroups'),
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ class HostsController extends Controller
|
|||
|
||||
if ($compact) {
|
||||
$this->addContent(
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit'])))
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit', 'view'])))
|
||||
->setBaseTarget('_next')
|
||||
->setAttribute('title', sprintf(
|
||||
t('Show all %d hosts'),
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ class ServicegroupsController extends Controller
|
|||
|
||||
if ($compact) {
|
||||
$this->addContent(
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit'])))
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit', 'view'])))
|
||||
->setBaseTarget('_next')
|
||||
->setAttribute('title', sprintf(
|
||||
t('Show all %d servicegroups'),
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ class ServicesController extends Controller
|
|||
|
||||
if ($compact) {
|
||||
$this->addContent(
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit'])))
|
||||
(new ShowMore($results, Url::fromRequest()->without(['showCompact', 'limit', 'view'])))
|
||||
->setBaseTarget('_next')
|
||||
->setAttribute('title', sprintf(
|
||||
t('Show all %d services'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue