diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:21:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:21:35 +0000 |
commit | 8adc969fb08ffab5f8e9e0b05b081046bdc2ad9a (patch) | |
tree | 555499bc0262c29210c706b44e0fb23c0ddd8b92 /application/controllers/ServicesController.php | |
parent | Adding debian version 1.2.2-3. (diff) | |
download | icingaweb2-module-graphite-8adc969fb08ffab5f8e9e0b05b081046bdc2ad9a.tar.xz icingaweb2-module-graphite-8adc969fb08ffab5f8e9e0b05b081046bdc2ad9a.zip |
Merging upstream version 1.2.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'application/controllers/ServicesController.php')
-rw-r--r-- | application/controllers/ServicesController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/controllers/ServicesController.php b/application/controllers/ServicesController.php index 212ad1f..48a353d 100644 --- a/application/controllers/ServicesController.php +++ b/application/controllers/ServicesController.php @@ -28,7 +28,7 @@ class ServicesController extends IcingadbGraphiteController // shift graph params to avoid exception $graphRange = $this->params->shift('graph_range'); $baseFilter = $graphRange ? Filter::equal('graph_range', $graphRange) : null; - foreach ($this->graphParams as $param) { + foreach ($this->preservedParams as $param) { $this->params->shift($param); } @@ -54,7 +54,7 @@ class ServicesController extends IcingadbGraphiteController $services, array_merge( [$limitControl->getLimitParam(), $sortControl->getSortParam()], - $this->graphParams + $this->preservedParams ) ); @@ -105,7 +105,7 @@ class ServicesController extends IcingadbGraphiteController Service::on($this->getDb()), array_merge( [LimitControl::DEFAULT_LIMIT_PARAM, SortControl::DEFAULT_SORT_PARAM], - $this->graphParams + $this->preservedParams ) ); |