diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index 96bd8a5f8f..f13e3c9d7b 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -987,11 +987,8 @@ function graphic_combined_module ($module_list, $weight_list, $period, } // Set the title and time format - if ($temp_range <= SECONDS_6HOURS) { - $time_format = 'H:i:s'; - } - elseif ($temp_range < SECONDS_1DAY) { - $time_format = 'H:i'; + if ($temp_range <= SECONDS_1DAY) { + $time_format = 'd.m.Y H:i:s'; } elseif ($temp_range < SECONDS_15DAYS) { $time_format = 'M d';