From ab598e35866f578afe32811fe07a6c1504a263f7 Mon Sep 17 00:00:00 2001 From: stan Date: Tue, 2 May 2006 09:57:40 +0000 Subject: [PATCH] Bug 319 - Fixed bogus AlarmMaxFPS column in preset query. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1948 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/zm_html_view_monitor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/zm_html_view_monitor.php b/web/zm_html_view_monitor.php index 684a5c812..5f0f8051a 100644 --- a/web/zm_html_view_monitor.php +++ b/web/zm_html_view_monitor.php @@ -112,7 +112,7 @@ if ( !isset( $new_monitor ) ) } if ( !empty($preset) ) { - $result = mysql_query( "select Type, Device, Channel, Format, Host, Port, Path, Width, Height, Palette, MaxFPS, AlarmMaxFPS, Controllable, ControlId, ControlDevice, ControlAddress, DefaultRate, DefaultScale from MonitorPresets where Id = '$preset'" ); + $result = mysql_query( "select Type, Device, Channel, Format, Host, Port, Path, Width, Height, Palette, MaxFPS, Controllable, ControlId, ControlDevice, ControlAddress, DefaultRate, DefaultScale from MonitorPresets where Id = '$preset'" ); if ( !$result ) die( mysql_error() ); $preset = mysql_fetch_assoc( $result );