From 0e5bece5b644effa406b778f7dd01f9461d7532d Mon Sep 17 00:00:00 2001 From: Anne-Catherine <57360138+accognet@users.noreply.github.com> Date: Tue, 8 Jul 2025 11:16:11 +0200 Subject: [PATCH 1/2] =?UTF-8?q?N=C2=B08347=20-=20Bad=20display=20of=20spec?= =?UTF-8?q?ial=20characters=20on=20the=20portal=20CheckToWrite=20message?= =?UTF-8?q?=20(#712)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/exceptions/CoreCannotSaveObjectException.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/exceptions/CoreCannotSaveObjectException.php b/application/exceptions/CoreCannotSaveObjectException.php index 61c6dd6d5..14adb2a74 100644 --- a/application/exceptions/CoreCannotSaveObjectException.php +++ b/application/exceptions/CoreCannotSaveObjectException.php @@ -63,14 +63,14 @@ class CoreCannotSaveObjectException extends CoreException public function getTextMessage() { $sTitle = Dict::S('UI:Error:SaveFailed'); - $sContent = utils::HtmlEntities($sTitle); + $sContent = $sTitle; if (count($this->aIssues) == 1) { $sIssue = reset($this->aIssues); - $sContent .= utils::HtmlEntities($sIssue); + $sContent .= $sIssue; } else { foreach ($this->aIssues as $sError) { - $sContent .= " ".utils::HtmlEntities($sError).", "; + $sContent .= " " . $sError . ", "; } } From 41194ce9abc3d1c0392fd10522687f527b692bf8 Mon Sep 17 00:00:00 2001 From: bdalsass Date: Wed, 9 Jul 2025 07:36:40 +0200 Subject: [PATCH 2/2] =?UTF-8?q?N=C2=B08365=20-=20Portal:=20impact=20analys?= =?UTF-8?q?is=20and=20silo,=20Ticket=20cannot=20be=20created=20due=20to=20?= =?UTF-8?q?CI=20not=20visible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- datamodels/2.x/itop-tickets/datamodel.itop-tickets.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/datamodels/2.x/itop-tickets/datamodel.itop-tickets.xml b/datamodels/2.x/itop-tickets/datamodel.itop-tickets.xml index 294c9fcf2..841a194ea 100755 --- a/datamodels/2.x/itop-tickets/datamodel.itop-tickets.xml +++ b/datamodels/2.x/itop-tickets/datamodel.itop-tickets.xml @@ -256,6 +256,10 @@ ListChanges(); if ($this->IsNew() || array_key_exists('functionalcis_list', $aChanges) || array_key_exists('contacts_list', $aChanges)) { $this->UpdateImpactedItems();