Skip to content

Commit

Permalink
N°7276 - Update french dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
accognet committed Sep 27, 2024
1 parent 4958447 commit 9580e13
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/bulkchange.class.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,8 @@ public function Process(CMDBChange $oChange = null)
{
if (!array_key_exists($iCol, $aResult[$iRow]))
{
$aResult[$iRow][$iCol] = new CellStatus_Void(utils::HtmlEntities($aRowData[$iCol]));
if(isset($aRowData[$iCol])) {
$aResult[$iRow][$iCol] = new CellStatus_Void(utils::HtmlEntities($aRowData[$iCol]));
} else {
$aResult[$iRow][$iCol] = new CellStatus_Issue('', null, Dict::S('UI:CSVReport-Value-Issue-NoValue'));
}
Expand All @@ -1376,7 +1377,8 @@ public function Process(CMDBChange $oChange = null)
if (!array_key_exists($iCol, $aResult[$iRow]))
{
// The foreign attribute is one of our reconciliation key
$aResult[$iRow][$iCol] = new CellStatus_Void(utils::HtmlEntities($aRowData[$iCol]));
if(isset($aRowData[$iCol])) {
$aResult[$iRow][$iCol] = new CellStatus_Void(utils::HtmlEntities($aRowData[$iCol]));
} else {
$aResult[$iRow][$iCol] = new CellStatus_Issue('', null, 'UI:CSVReport-Value-Issue-NoValue');
}
Expand Down

0 comments on commit 9580e13

Please sign in to comment.