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:
parent
5b72666322
commit
b7bda0bfa5
|
@ -29,7 +29,7 @@ if ( !$result )
|
||||||
die( mysql_error() );
|
die( mysql_error() );
|
||||||
$event = mysql_fetch_assoc( $result );
|
$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 );
|
$result = mysql_query( $sql );
|
||||||
if ( !$result )
|
if ( !$result )
|
||||||
die( mysql_error() );
|
die( mysql_error() );
|
||||||
|
|
Loading…
Reference in New Issue