Fixed missing timestamp from frames view.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@980 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2004-03-18 21:23:36 +00:00
parent 5b72666322
commit b7bda0bfa5
1 changed files with 1 additions and 1 deletions

View File

@ -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() );