2013-11-11 Sergio Martin <sergio.martin@artica.es>

* include/functions_treeview.php: Fix the agents query in
	tree view of tags to avoid duplicated agents for
	incident #349



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9047 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2013-11-11 12:34:37 +00:00
parent d7ab0dc445
commit 479b58e9d7
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2013-11-11 Sergio Martin <sergio.martin@artica.es>
* include/functions_treeview.php: Fix the agents query in
tree view of tags to avoid duplicated agents for
incident #349
2013-11-07 Sergio Martin <sergio.martin@artica.es>
* include/functions_events.php: Change the way of store

View File

@ -1211,7 +1211,7 @@ function treeview_getFirstBranchSQL ($type, $id, $avariableGroupsIds, $statusSel
$sql .= ' AND tagente.disabled = 0'. $search_sql;
$sql .= ' ORDER BY tagente.nombre COLLATE utf8_general_ci ASC';
$sql .= ' GROUP BY tagente.id_agente ORDER BY tagente.nombre COLLATE utf8_general_ci ASC';
break;
}