From 3650cf761d18a76c346ec8b213a4160288287d3f Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Thu, 7 Mar 2024 15:06:43 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B02039=20-=20Correctly=20pass=20context=20?= =?UTF-8?q?arguments=20to=20recipients=20OQL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/datamodel.core.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/datamodel.core.xml b/core/datamodel.core.xml index 7bdfce0ac..b10ab9198 100644 --- a/core/datamodel.core.xml +++ b/core/datamodel.core.xml @@ -260,7 +260,7 @@ { $oRecipientsSearch = DBObjectSearch::FromOQL($this->Get('recipients')); $oRecipientsSearch->AllowAllData(); - $oRecipientsSet = new DBObjectSet($oRecipientsSearch); + $oRecipientsSet = new DBObjectSet($oRecipientsSearch, array(), $aContextArgs); $bIsAsync = $this->IsAsynchronous(); [$sPreviousLanguage, $aPreviousPluginProperties] = $this->SetNotificationLanguage();