mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-02-18 18:19:05 -05:00
DataFilter: Fix indexing of the stripped filter chain
Some checks failed
L10n Update / update (push) Has been cancelled
PHP Tests / Static analysis for php 7.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 7.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 7.4 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.0 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.1 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 7.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 7.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 7.4 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.0 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.1 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.3 on ubuntu-latest (push) Has been cancelled
Some checks failed
L10n Update / update (push) Has been cancelled
PHP Tests / Static analysis for php 7.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 7.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 7.4 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.0 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.1 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Static analysis for php 8.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 7.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 7.3 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 7.4 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.0 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.1 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.2 on ubuntu-latest (push) Has been cancelled
PHP Tests / Unit tests with php 8.3 on ubuntu-latest (push) Has been cancelled
This commit is contained in:
parent
94c22a1f19
commit
a1b771217e
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ class DataFilter extends FormElement
|
|||
$this->filter = null;
|
||||
foreach ($array as $id => $entry) {
|
||||
$filterId = $this->idToFilterId($id);
|
||||
$sub = $this->entryToFilter($entry);
|
||||
$sub = $this->entryToFilter($entry)->setId($filterId);
|
||||
$this->checkEntryForActions($filterId, $entry);
|
||||
$parentId = $this->parentIdFor($filterId);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue