Fixed CSV on network/netflow explorer

Former-commit-id: b111d5717ee66754ae15aa25c79464da92678174
This commit is contained in:
fermin831 2019-03-11 18:04:01 +01:00
parent 7bf44b7c5b
commit 8696bd9f91
1 changed files with 5 additions and 2 deletions

View File

@ -235,10 +235,13 @@ if (get_parameter('export_csv')) {
$nl = "\n"; $nl = "\n";
// Print the header. // Print the header.
foreach ($table->head as $head_elem) { echo reset($table->head).$div;
echo $head_elem.$div; if (!$is_network) {
echo __('Flows').$div;
} }
echo __('Packets').$div;
echo __('Bytes').$div;
echo $nl; echo $nl;
// Print the data. // Print the data.