N°2875 - Fix missing argument ":this" when submitting an entry in the activity panel

This commit is contained in:
Molkobain
2021-11-03 11:59:08 +01:00
parent 79c17970f8
commit 8c03525fbb

View File

@@ -613,7 +613,9 @@ class TriggerOnObjectMention extends TriggerOnObject
$oSearch = DBObjectSearch::FromOQL($sFilter);
$oSearch->AddCondition('id', $oObject->GetKey(), '=');
$oSearch->AddCondition('finalclass', get_class($oObject), '=');
$oSet = new DBObjectSet($oSearch);
$aParams = $oObject->ToArgs('this');
$oSet = new DBObjectSet($oSearch, [], $aParams);
$bRet = $oSet->CountExceeds(0);
}
else