From b7bda0bfa5e2d9b75cd8481daa10cda0acb46a21 Mon Sep 17 00:00:00 2001 From: stan Date: Thu, 18 Mar 2004 21:23:36 +0000 Subject: [PATCH] Fixed missing timestamp from frames view. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@980 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/zm_html_view_frames.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/zm_html_view_frames.php b/web/zm_html_view_frames.php index 3f7db3c2b..08a79bb71 100644 --- a/web/zm_html_view_frames.php +++ b/web/zm_html_view_frames.php @@ -29,7 +29,7 @@ if ( !$result ) die( mysql_error() ); $event = mysql_fetch_assoc( $result ); -$sql = "select * from Frames where EventID = '$eid' order by FrameId"; +$sql = "select *, unix_timestamp( TimeStamp ) as UnixTimeStamp from Frames where EventID = '$eid' order by FrameId"; $result = mysql_query( $sql ); if ( !$result ) die( mysql_error() );