2014-05-07 Alejandro Gallardo <alejandro.gallardo@artica.es>
* include/functions_visual_map.php: Now the linked visual consoles are opened in another page. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9882 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
a65a494f7f
commit
53c3358799
|
@ -1,3 +1,8 @@
|
|||
2014-05-07 Alejandro Gallardo <alejandro.gallardo@artica.es>
|
||||
|
||||
* include/functions_visual_map.php: Now the linked
|
||||
visual consoles are opened in another page.
|
||||
|
||||
2014-05-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_ui.php, include/functions_networkmap.php: clean
|
||||
|
@ -50,6 +55,7 @@
|
|||
pandora_console/include/functions_events.php: Fixed bug
|
||||
in event viewer. A user could not be assigned himself as
|
||||
the owner of the event.
|
||||
|
||||
2014-05-05 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* pandora_console/include/functions_groups.php
|
||||
|
|
|
@ -1273,11 +1273,11 @@ function visual_map_print_visual_map ($id_layout, $show_links = true, $draw_line
|
|||
elseif ($layout_data['id_layout_linked'] > 0) {
|
||||
// Link to a map
|
||||
if (empty($layout_data['id_metaconsole'])) {
|
||||
echo '<a href="' . $config['homeurl'] . 'index.php?sec=reporting&sec2=operation/visual_console/render_view&pure='.$config["pure"].'&id='.$layout_data["id_layout_linked"].'">';
|
||||
echo '<a target="_blank" href="' . $config['homeurl'] . 'index.php?sec=reporting&sec2=operation/visual_console/render_view&pure='.$config["pure"].'&id='.$layout_data["id_layout_linked"].'">';
|
||||
}
|
||||
else {
|
||||
$pure = get_parameter('pure', 0);
|
||||
echo '<a href="index.php?sec=screen&sec2=screens/screens&action=visualmap&pure=' . $pure . '&id_visualmap=' . $layout_data["id_layout_linked"] . '&refr=0">';
|
||||
echo '<a target="_blank" href="index.php?sec=screen&sec2=screens/screens&action=visualmap&pure=' . $pure . '&id_visualmap=' . $layout_data["id_layout_linked"] . '&refr=0">';
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue