2012-01-10 Vanessa Gil <vanessa.gil@artica.es>

* operation/netflow/nf_view.php: Fixed filter
	netflow.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5338 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
vgilc 2012-01-10 14:05:17 +00:00
parent b76fb39f39
commit 51f62cd99b
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-01-10 Vanessa Gil <vanessa.gil@artica.es>
* operation/netflow/nf_view.php: Fixed filter
netflow.
2012-01-10 Vanessa Gil <vanessa.gil@artica.es>
* operation/agentes/group_view.php
include/functions_group.php: Improve display for

View File

@ -260,7 +260,7 @@ if ($id!=''){
$sql = "SELECT * FROM tnetflow_report_content WHERE id_rc='".$rc."'";
$content_report = db_get_row_sql($sql);
$name_filter = $content_report['id_filter'];
$id_filter = $content_report['id_filter'];
$max_val= $content_report['max'];
$element = $content_report['show_graph'];
@ -276,7 +276,7 @@ if ($id!=''){
$date = strtotime ($date." ".$time);
$limit = $date - $interval;
$sql = "SELECT * FROM tnetflow_filter WHERE id_name = '".$name_filter."'";
$sql = "SELECT * FROM tnetflow_filter WHERE id_sg = '".$id_filter."'";
$result = db_get_row_sql($sql,false,true);
$assign_group = $result['group'];