N°2937 - fix export error on EventIssue object

This commit is contained in:
Eric
2020-05-13 11:24:34 +02:00
parent 21c2574cd9
commit 7bb1f9f423

View File

@@ -9641,7 +9641,7 @@ class AttributePropertySet extends AttributeTable
$sValue = '*****';
}
$sRes .= "<TR>";
$sCell = str_replace("\n", "<br>\n", Str::pure2html((string)$sValue));
$sCell = str_replace("\n", "<br>\n", Str::pure2html(@(string)$sValue));
$sRes .= "<TD class=\"label\">$sProperty</TD><TD>$sCell</TD>";
$sRes .= "</TR>";
}