From 83e98ef2b8aa906693f01b8772ec7ec0ee3b1cd3 Mon Sep 17 00:00:00 2001 From: acognet Date: Thu, 17 Feb 2022 17:06:06 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B04284=20-=20Object=20modification:=20Attr?= =?UTF-8?q?ibute=20value=20lost=20if=20not=20allowed=20to=20be=20seen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/dbunionsearch.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbunionsearch.class.php b/core/dbunionsearch.class.php index 8a7f67a50..31a1e86ac 100644 --- a/core/dbunionsearch.class.php +++ b/core/dbunionsearch.class.php @@ -416,7 +416,7 @@ class DBUnionSearch extends DBSearch $aSearches = array(); foreach ($this->aSearches as $oSearch) { - if (!$oSearch->IsAllDataAllowed() && !$oSearch->IsDataFiltered()) { + if (!$oSearch->IsAllDataAllowed()) { $aSearches[] = $oSearch->Filter($sClassAlias, $oFilter); } else { $aSearches[] = $oSearch;