#10302 fixed tz in event list

This commit is contained in:
Daniel Cebrian 2023-02-09 11:42:42 +01:00
parent 34c61bb513
commit 50e8b457f8
1 changed files with 3 additions and 3 deletions

View File

@ -350,7 +350,7 @@ if (is_ajax() === true) {
'te.warning_instructions', 'te.warning_instructions',
'te.unknown_instructions', 'te.unknown_instructions',
'te.owner_user', 'te.owner_user',
'if(te.ack_utimestamp > 0, from_unixtime(te.ack_utimestamp),"") as ack_utimestamp', 'if(te.ack_utimestamp > 0, te.ack_utimestamp,"") as ack_utimestamp',
'te.custom_data', 'te.custom_data',
'te.data', 'te.data',
'te.module_status', 'te.module_status',
@ -380,7 +380,7 @@ if (is_ajax() === true) {
$order['field'] = 'agent_name'; $order['field'] = 'agent_name';
break; break;
case 'if(te.ack_utimestamp > 0, from_unixtime(te.ack_utimestamp),"") as ack_utimestamp': case 'if(te.ack_utimestamp > 0, te.ack_utimestamp,"") as ack_utimestamp':
$order['field'] = 'ack_utimestamp'; $order['field'] = 'ack_utimestamp';
break; break;
@ -528,7 +528,7 @@ if (is_ajax() === true) {
true true
); );
$tmp->timestamp = ui_print_timestamp( $tmp->timestamp = ui_print_timestamp(
$tmp->timestamp, $tmp->utimestamp,
true true
); );