From bf21481bf606479b05f92353dd17d1ecdeba42d7 Mon Sep 17 00:00:00 2001 From: vdumas Date: Mon, 15 May 2023 12:32:09 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B06212=20-=20Replace=20'case=20logs'=20by?= =?UTF-8?q?=20'logs'=20in=20naming=20of=20ActionEmail=20for=20TriggerOnObj?= =?UTF-8?q?ectMention?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- datamodels/2.x/itop-structure/module.itop-structure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datamodels/2.x/itop-structure/module.itop-structure.php b/datamodels/2.x/itop-structure/module.itop-structure.php index e6591f90f..0b01e08c6 100644 --- a/datamodels/2.x/itop-structure/module.itop-structure.php +++ b/datamodels/2.x/itop-structure/module.itop-structure.php @@ -192,7 +192,7 @@ if (!class_exists('StructureInstaller')) // Build the corresponding action and link it to the triggers if (count($aCreatedTriggerIds) > 0) { $oAction = MetaModel::NewObject('ActionEmail'); - $oAction->Set('name', 'Notification to persons mentioned in case logs'); + $oAction->Set('name', 'Notification to persons mentioned in logs'); $oAction->Set('status', 'enabled'); $oAction->Set('from', '$current_contact->email$'); $oAction->Set('to', 'SELECT Person WHERE id = :mentioned->id');