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

This commit is contained in:
raviks789 2025-11-17 12:04:29 +01:00 committed by Ravi Kumar Kempapura Srinivasa
parent 94c22a1f19
commit a1b771217e

View file

@ -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);