Fixed CSV on network/netflow explorer
Former-commit-id: b111d5717ee66754ae15aa25c79464da92678174
This commit is contained in:
parent
7bf44b7c5b
commit
8696bd9f91
|
@ -235,10 +235,13 @@ if (get_parameter('export_csv')) {
|
|||
$nl = "\n";
|
||||
|
||||
// Print the header.
|
||||
foreach ($table->head as $head_elem) {
|
||||
echo $head_elem.$div;
|
||||
echo reset($table->head).$div;
|
||||
if (!$is_network) {
|
||||
echo __('Flows').$div;
|
||||
}
|
||||
|
||||
echo __('Packets').$div;
|
||||
echo __('Bytes').$div;
|
||||
echo $nl;
|
||||
|
||||
// Print the data.
|
||||
|
|
Loading…
Reference in New Issue