2014-06-30 Koichiro KIKUCHI <koichiro@rworks.jp>
* operation/agentes/estado_monitores.php, operation/agentes/status_monitor.php, operation/search_modules.php: Fixed snapshot view title. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10311 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
42712adb41
commit
3ae701b95a
|
@ -1,3 +1,9 @@
|
|||
2014-06-30 Koichiro KIKUCHI <koichiro@rworks.jp>
|
||||
|
||||
* operation/agentes/estado_monitores.php,
|
||||
operation/agentes/status_monitor.php,
|
||||
operation/search_modules.php: Fixed snapshot view title.
|
||||
|
||||
2014-06-30 Koichiro KIKUCHI <koichiro@rworks.jp>
|
||||
|
||||
* extensions/agents_modules.php,
|
||||
|
|
|
@ -572,7 +572,7 @@ foreach ($modules as $module) {
|
|||
$link ="winopeng_var('operation/agentes/snapshot_view.php?" .
|
||||
"id=" . $module["id_agente_modulo"] .
|
||||
"&refr=" . $module["current_interval"] .
|
||||
"&label=" . rawurlencode($module["nombre"]) . "','".$win_handle."', 700,480)";
|
||||
"&label=" . rawurlencode(urlencode(io_safe_output($module["nombre"]))) . "','".$win_handle."', 700,480)";
|
||||
|
||||
$salida = '<a href="javascript:'.$link.'">' .
|
||||
html_print_image("images/default_list.png", true,
|
||||
|
|
|
@ -1165,7 +1165,7 @@ foreach ($result as $row) {
|
|||
$link = "winopeng_var('operation/agentes/snapshot_view.php?" .
|
||||
"id=" . $row["id_agente_modulo"] .
|
||||
"&refr=" . $row["current_interval"] .
|
||||
"&label=" . $row["nombre"] . "','" . $win_handle . "', 700,480)";
|
||||
"&label=" . rawurlencode(urlencode(io_safe_output($row["module_name"]))) . "','" . $win_handle . "', 700,480)";
|
||||
|
||||
$salida = '<a href="javascript:' . $link . '">' .
|
||||
html_print_image("images/default_list.png", true,
|
||||
|
|
|
@ -175,7 +175,7 @@ else {
|
|||
$url = 'include/procesos.php?agente='.$module["id_agente_modulo"];
|
||||
$win_handle=dechex(crc32($handle));
|
||||
|
||||
$link ="winopeng_var('operation/agentes/snapshot_view.php?id=".$module["id_agente_modulo"]."&refr=".$module["current_interval"]."&label=".$module["nombre"]."','".$win_handle."', 700,480)";
|
||||
$link ="winopeng_var('operation/agentes/snapshot_view.php?id=".$module["id_agente_modulo"]."&refr=".$module["current_interval"]."&label=".rawurlencode(urlencode(io_safe_output($module["module_name"])))."','".$win_handle."', 700,480)";
|
||||
|
||||
$dataCell = '<a href="javascript:'.$link.'">' . html_print_image("images/default_list.png", true, array("border" => '0', "alt" => "", "title" => __("Snapshot view"))) . '</a> ';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue