diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index 048e6a5c2d..5b54bed451 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -555,13 +555,13 @@ if (is_ajax() === true) { $last_contact_value = ui_print_timestamp($last_contact, true); } else { $title = date($config['date_format'], strtotime($tmp->timestamp)); - $value = human_time_comparation(strtotime($tmp->timestamp), 'large'); + $value = ui_print_timestamp(strtotime($tmp->timestamp), true); $last_contact_value = ''.$value.''; } } else { date_default_timezone_set($user_timezone); $title = date($config['date_format'], strtotime($tmp->timestamp)); - $value = human_time_comparation(strtotime($tmp->timestamp), 'large'); + $value = ui_print_timestamp(strtotime($tmp->timestamp), true); $last_contact_value = ''.$value.''; }