diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 24a51f80f0..95ee92381f 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2014-05-05 Alejandro Gallardo + + * include/functions_netflow.php: Added an overflow + property to the data table when its width is too high. + 2014-05-05 Vanessa Gil * pandoradb_migrate_5.0.x_to_5.1.mysql.sql diff --git a/pandora_console/include/functions_netflow.php b/pandora_console/include/functions_netflow.php index 4c3ad7d88f..4261e333b0 100644 --- a/pandora_console/include/functions_netflow.php +++ b/pandora_console/include/functions_netflow.php @@ -1168,7 +1168,9 @@ function netflow_draw_item ($start_date, $end_date, $interval_length, $type, $fi if ($interval_length != 0) { $html .= " " . _('Resolution') . ": $interval_length " . __('seconds'); } + $html .= "
"; $html .= netflow_data_table ($data, $start_date, $end_date, $aggregate, $unit); + $html .= "
"; return $html; }