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:
parent
b76fb39f39
commit
51f62cd99b
|
@ -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>
|
2012-01-10 Vanessa Gil <vanessa.gil@artica.es>
|
||||||
* operation/agentes/group_view.php
|
* operation/agentes/group_view.php
|
||||||
include/functions_group.php: Improve display for
|
include/functions_group.php: Improve display for
|
||||||
|
|
|
@ -260,7 +260,7 @@ if ($id!=''){
|
||||||
$sql = "SELECT * FROM tnetflow_report_content WHERE id_rc='".$rc."'";
|
$sql = "SELECT * FROM tnetflow_report_content WHERE id_rc='".$rc."'";
|
||||||
|
|
||||||
$content_report = db_get_row_sql($sql);
|
$content_report = db_get_row_sql($sql);
|
||||||
$name_filter = $content_report['id_filter'];
|
$id_filter = $content_report['id_filter'];
|
||||||
$max_val= $content_report['max'];
|
$max_val= $content_report['max'];
|
||||||
$element = $content_report['show_graph'];
|
$element = $content_report['show_graph'];
|
||||||
|
|
||||||
|
@ -276,7 +276,7 @@ if ($id!=''){
|
||||||
$date = strtotime ($date." ".$time);
|
$date = strtotime ($date." ".$time);
|
||||||
$limit = $date - $interval;
|
$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);
|
$result = db_get_row_sql($sql,false,true);
|
||||||
|
|
||||||
$assign_group = $result['group'];
|
$assign_group = $result['group'];
|
||||||
|
|
Loading…
Reference in New Issue