2011-08-16 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/estado_monitores.php: erased the notice php messages when $module["extended_info"] is empty. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4741 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
55cd11da6b
commit
ab29a204c8
|
@ -1,3 +1,8 @@
|
|||
2011-08-16 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* operation/agentes/estado_monitores.php: erased the notice php messages
|
||||
when $module["extended_info"] is empty.
|
||||
|
||||
2011-08-16 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* operation/snmpconsole/snmp_view.php, godmode/menu.php,
|
||||
|
|
|
@ -318,8 +318,10 @@ foreach ($modules as $module) {
|
|||
$data[2] .= '<a href="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'&tab=module&id_agent_module='.$module["id_agente_modulo"].'&edit_module='.$module["id_modulo"].'">' . html_print_image("images/config.png", true, array("alt" => '0', "border" => "")) . '</a>';
|
||||
|
||||
$data[3] = ui_print_string_substr ($module["nombre"], 30, true);
|
||||
if ($module["extended_info"] != "") {
|
||||
$data[3] .= ui_print_help_tip ($module["extended_info"], true, '/images/comments.png');
|
||||
if (!empty($module["extended_info"])) {
|
||||
if ($module["extended_info"] != "") {
|
||||
$data[3] .= ui_print_help_tip ($module["extended_info"], true, '/images/comments.png');
|
||||
}
|
||||
}
|
||||
|
||||
//Adds tag context information
|
||||
|
|
Loading…
Reference in New Issue