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";
|
$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.
|
||||||
|
|
Loading…
Reference in New Issue