2010-06-01 Sergio Martin <sergio.martin@artica.es>

* include/functions_visual_map.php: Fixed a
	undefined variable notice in visual console
	for bug: 3007450



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2832 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-06-01 14:27:24 +00:00
parent e4b5db5ebb
commit bd8bea8105
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2010-06-01 Sergio Martin <sergio.martin@artica.es>
* include/functions_visual_map.php: Fixed a
undefined variable notice in visual console
for bug: 3007450
2010-06-01 Sergio Martin <sergio.martin@artica.es>
* include/functions_ui.php: Fixed the group

View File

@ -589,7 +589,7 @@ function print_pandora_visual_map ($id_layout, $show_links = true, $draw_lines =
if ($show_links) {
if (($layout_data['id_layout_linked'] == "") || ($layout_data['id_layout_linked'] == 0)) {
echo '<a href="index.php?sec=estado&amp;sec2=operation/agentes/ver_agente&amp;id_agente='.$id_agent.'&amp;tab=data">';
echo '<a href="index.php?sec=estado&amp;sec2=operation/agentes/ver_agente&amp;id_agente='.$layout_data["id_agent"].'&amp;tab=data">';
} else {
echo '<a href="index.php?sec=visualc&amp;sec2=operation/visual_console/render_view&amp;pure='.$config["pure"].'&amp;id='.$layout_data['id_layout_linked'].'">';
}