2013-02-04 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/reporting_builder.item_editor.php: fixed the
	ovewrite the var $sql from netflow filter.
	
	Fixes: #3602194




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7572 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-02-04 14:19:05 +00:00
parent 10115f4f55
commit 56c806ada7
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2013-02-04 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.item_editor.php: fixed the
ovewrite the var $sql from netflow filter.
Fixes: #3602194
2013-02-04 Miguel de Dios <miguel.dedios@artica.es> 2013-02-04 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_xml.php, include/functions_reporting.php, * include/functions_xml.php, include/functions_reporting.php,

View File

@ -484,8 +484,8 @@ html_print_input_hidden('id_item', $idItem);
$groups_id[] = $groups['id_grupo']; $groups_id[] = $groups['id_grupo'];
} }
$sql = "SELECT * FROM tnetflow_filter WHERE id_group IN (".implode(',',$groups_id).")"; $sql_netflow = "SELECT * FROM tnetflow_filter WHERE id_group IN (".implode(',',$groups_id).")";
html_print_select_from_sql($sql, 'netflow_filter', $netflow_filter); html_print_select_from_sql($sql_netflow, 'netflow_filter', $netflow_filter);
?> ?>
</td> </td>
</tr> </tr>