2014-05-05 Alejandro Gallardo <alejandro.gallardo@artica.es>

* include/functions_netflow.php: Added an overflow
	property to the data table when its width is too high.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9861 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
alexhigh 2014-05-05 11:29:56 +00:00
parent 139020c862
commit e4c0f97c4a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2014-05-05 Alejandro Gallardo <alejandro.gallardo@artica.es>
* include/functions_netflow.php: Added an overflow
property to the data table when its width is too high.
2014-05-05 Vanessa Gil <vanessa.gil@artica.es>
* pandoradb_migrate_5.0.x_to_5.1.mysql.sql

View File

@ -1168,7 +1168,9 @@ function netflow_draw_item ($start_date, $end_date, $interval_length, $type, $fi
if ($interval_length != 0) {
$html .= "&nbsp;<b>" . _('Resolution') . ":</b> $interval_length " . __('seconds');
}
$html .= "<div style='max-width: 1000px; overflow: auto;'>";
$html .= netflow_data_table ($data, $start_date, $end_date, $aggregate, $unit);
$html .= "</div>";
return $html;
}