Remove "updated in real time" message because is confused, really it must refer if data source is db or cache #4093
This commit is contained in:
parent
9523557145
commit
f4a1358a61
|
@ -55,7 +55,8 @@ function mainAgentsAlerts() {
|
|||
$updated_info = __('Last update'). " : ". ui_print_timestamp (db_get_sql ("SELECT min(utimestamp) FROM tgroup_stat"), true);
|
||||
}
|
||||
else {
|
||||
$updated_info = __("Updated at realtime");
|
||||
// $updated_info = __("Updated at realtime");
|
||||
$updated_info = "";
|
||||
}
|
||||
|
||||
$updated_time = $updated_info;
|
||||
|
|
|
@ -56,7 +56,8 @@ function mainAgentsModules() {
|
|||
$updated_info = __('Last update'). " : ". ui_print_timestamp (db_get_sql ("SELECT min(utimestamp) FROM tgroup_stat"), true);
|
||||
}
|
||||
else {
|
||||
$updated_info = __("Updated at realtime");
|
||||
// $updated_info = __("Updated at realtime");
|
||||
$updated_info = "";
|
||||
}
|
||||
|
||||
$updated_time = $updated_info;
|
||||
|
|
|
@ -62,7 +62,8 @@ if ($config["realtimestats"] == 0) {
|
|||
$updated_time .= "</a>";
|
||||
}
|
||||
else {
|
||||
$updated_time = __("Updated at realtime");
|
||||
// $updated_info = __("Updated at realtime");
|
||||
$updated_info = "";
|
||||
}
|
||||
|
||||
// Header
|
||||
|
|
|
@ -47,7 +47,8 @@ if ($config["realtimestats"] == 0) {
|
|||
$updated_time .= "</a>";
|
||||
}
|
||||
else {
|
||||
$updated_time = __("Updated at realtime");
|
||||
// $updated_info = __("Updated at realtime");
|
||||
$updated_info = "";
|
||||
}
|
||||
|
||||
// Header
|
||||
|
|
Loading…
Reference in New Issue