2009-04-22 Manuel Arostegui <marostegui@artica.es>
* operation/agentes/sla_view.php: Fixed bug #2777504 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1641 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
b4f446fbad
commit
203fcf3ed9
|
@ -1,3 +1,7 @@
|
||||||
|
2009-04-22 Manuel Arostegui <marostegui@artica.es>
|
||||||
|
|
||||||
|
* operation/agentes/sla_view.php: Fixed bug #2777504
|
||||||
|
|
||||||
2009-04-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
2009-04-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||||
|
|
||||||
* include/functions_ui.php: Added get_url_refresh which gets the correct
|
* include/functions_ui.php: Added get_url_refresh which gets the correct
|
||||||
|
|
|
@ -35,6 +35,11 @@ $id_agent = get_parameter ("id_agente", 0);
|
||||||
$interval = get_agent_interval ($id_agent);
|
$interval = get_agent_interval ($id_agent);
|
||||||
$modules = get_agent_modules ($id_agent, '*',
|
$modules = get_agent_modules ($id_agent, '*',
|
||||||
array ('disabled' => 0, 'history_data' => 1, 'delete_pending' => 0));
|
array ('disabled' => 0, 'history_data' => 1, 'delete_pending' => 0));
|
||||||
|
if (empty ($modules)) {
|
||||||
|
print_error_message (__("There are no modules to evaluate the S.L.A. from"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$offset = get_parameter ("offset", 0);
|
$offset = get_parameter ("offset", 0);
|
||||||
|
|
||||||
// Get all module from agent
|
// Get all module from agent
|
||||||
|
|
Loading…
Reference in New Issue