N°6000 - CSV Import with quote no more handled (#508)

This commit is contained in:
bdalsass
2023-06-20 16:39:56 +02:00
committed by GitHub
parent 63487226a9
commit 4d43d83b95
3 changed files with 26 additions and 26 deletions

View File

@@ -238,7 +238,7 @@ class ApplicationContext
{
$aContextInputBlocks = [];
foreach ($this->aValues as $sName => $sValue) {
$aContextInputBlocks[] = InputUIBlockFactory::MakeForHidden("c[$sName]", utils::EscapeHtml($sValue));
$aContextInputBlocks[] = InputUIBlockFactory::MakeForHidden("c[$sName]", $sValue);
}
return $aContextInputBlocks;
}