2008-06-19 Sancho Lerena <slerena@gmail.com>
* Fixed some typos. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@890 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
0b4adbafe8
commit
0da63bcaac
|
@ -1,5 +1,7 @@
|
|||
2008-06-19 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* Fixed some typos.
|
||||
|
||||
* Fixed bad conflict resolution commit in functions_db.php
|
||||
|
||||
* include/functions_reporting.php
|
||||
|
|
|
@ -100,6 +100,9 @@
|
|||
} else
|
||||
$global_health = 100;
|
||||
|
||||
if ($global_health < 0)
|
||||
$global_health;
|
||||
|
||||
echo "<table class='databox' celldpadding=4 cellspacing=4 width=250>";
|
||||
//echo "<h2>".$lang_label["tactical_indicator"]."</h2>";
|
||||
//echo "<img src='reporting/fgraph.php?tipo=odo_tactic&value1=$global_health&value2=$data_health&value3=$monitor_health'>";
|
||||
|
|
|
@ -93,7 +93,7 @@ if (give_acl($id_user, 0, "AW")!=1) {
|
|||
|
||||
// Update configuration
|
||||
if (isset($_POST["disk_conf"])) {
|
||||
save_config(str_replace("\r\n", "\n", stripslashes($_POST["disk_conf"])));
|
||||
save_config(str_replace("\r\n", "\n", $_POST["disk_conf"]));
|
||||
echo "<h3 class='suc'>" . $lang_label["update_agent_ok"] . "</h3>";
|
||||
}
|
||||
|
||||
|
|
|
@ -1110,7 +1110,7 @@ function give_agent_address_from_list ($id_agent){
|
|||
* @return The agent if of the given module.
|
||||
*/
|
||||
function give_agent_id_from_module_id ($id_agent_module) {
|
||||
return (int) get_db_value ('id_agente', 'tagent_modulo', 'id_agente_modulo', $id_agent_module);
|
||||
return (int) get_db_value ('id_agente', 'tagente_modulo', 'id_agente_modulo', $id_agent_module);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -328,6 +328,9 @@ if (comprueba_login() == 0) {
|
|||
$ultima = strtotime($ultimo_contacto);
|
||||
$ahora = strtotime("now");
|
||||
$diferencia = $ahora - $ultima;
|
||||
if ( $diferencia > ($biginterval*2))
|
||||
echo "<font color='#ff0000'>";
|
||||
|
||||
echo human_time_comparation($ultimo_contacto);
|
||||
/*
|
||||
if ($biginterval > 0){
|
||||
|
|
|
@ -64,6 +64,9 @@
|
|||
} else
|
||||
$global_health = 100;
|
||||
|
||||
if ($global_health < 0)
|
||||
$global_health;
|
||||
|
||||
// Monitor checks
|
||||
// ~~~~~~~~~~~~~~~
|
||||
echo "<table width=770 border=0>";
|
||||
|
|
Loading…
Reference in New Issue