From aaf391fc6556178a005de05b75f4f699954b4124 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 17 Feb 2022 13:30:01 -0500 Subject: [PATCH] Include EndDateTimeShort in event ajax response --- web/ajax/status.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/ajax/status.php b/web/ajax/status.php index 96f83595c..46191ca01 100644 --- a/web/ajax/status.php +++ b/web/ajax/status.php @@ -112,6 +112,7 @@ $statusData = array( 'StartTimeShort' => array( 'sql' => 'date_format( StartDateTime, \''.MYSQL_FMT_DATETIME_SHORT.'\' )' ), 'StartDateTimeShort' => array( 'sql' => 'date_format( StartDateTime, \''.MYSQL_FMT_DATETIME_SHORT.'\' )' ), 'EndDateTime' => true, + 'EndDateTimeShort' => array( 'sql' => 'date_format( EndDateTime, \''.MYSQL_FMT_DATETIME_SHORT.'\' )' ), 'Width' => true, 'Height' => true, 'Length' => true, @@ -140,6 +141,7 @@ $statusData = array( 'StartTimeShort' => array( 'sql' => 'date_format( StartDateTime, \''.MYSQL_FMT_DATETIME_SHORT.'\' )' ), 'StartDateTimeShort' => array( 'sql' => 'date_format( StartDateTime, \''.MYSQL_FMT_DATETIME_SHORT.'\' )' ), 'EndDateTime' => true, + 'EndDateTimeShort' => array( 'sql' => 'date_format( EndDateTime, \''.MYSQL_FMT_DATETIME_SHORT.'\' )' ), 'Width' => true, 'Height' => true, 'Length' => true,