We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 913cbf9 commit 3f5053bCopy full SHA for 3f5053b
app/code/Magento/Backend/Block/Widget/Grid/Extended.php
@@ -1067,10 +1067,11 @@ public function getCsv()
1067
$data = [];
1068
foreach ($this->getColumns() as $column) {
1069
if (!$column->getIsSystem()) {
1070
+ $exportField = (string)$column->getRowFieldExport($item);
1071
$data[] = '"' . str_replace(
1072
['"', '\\'],
1073
['""', '\\\\'],
- $column->getRowFieldExport($item) ?: ''
1074
+ $exportField ?: ''
1075
) . '"';
1076
}
1077
0 commit comments