diff --git a/src/zm_event.cpp b/src/zm_event.cpp
index 534614d53..17e4d170a 100644
--- a/src/zm_event.cpp
+++ b/src/zm_event.cpp
@@ -488,7 +488,7 @@ void Event::StreamMpeg( int event_id, const char *format, int bitrate, int maxfp
static char sql[BUFSIZ];
static char eventpath[PATH_MAX];
- bool timed_frames = (bool)config.Item( ZM_WEB_VIDEO_TIMED_FRAMES );
+ bool timed_frames = (bool)config.Item( ZM_VIDEO_TIMED_FRAMES );
sprintf( sql, "select M.Id, M.Name, E.Length, E.Frames from Events as E inner join Monitors as M on E.MonitorId = M.Id where E.Id = %d", event_id );
if ( mysql_query( &dbconn, sql ) )
diff --git a/src/zm_monitor.cpp b/src/zm_monitor.cpp
index fee405cc2..7785a8eda 100644
--- a/src/zm_monitor.cpp
+++ b/src/zm_monitor.cpp
@@ -1177,7 +1177,7 @@ void Monitor::StreamMpeg( const char *format, int bitrate, int maxfps, int scale
}
fprintf( stdout, "Content-type: %s\r\n\r\n", mime_type );
- bool timed_frames = (bool)config.Item( ZM_WEB_VIDEO_TIMED_FRAMES );
+ bool timed_frames = (bool)config.Item( ZM_VIDEO_TIMED_FRAMES );
int fps = int(GetFPS());
if ( !fps )
diff --git a/web/zm_actions.php b/web/zm_actions.php
index 885160837..db58d1657 100644
--- a/web/zm_actions.php
+++ b/web/zm_actions.php
@@ -471,7 +471,7 @@ if ( isset($action) )
{
case "system" :
case "paths" :
- case "video" :
+ case "config" :
case "network" :
case "x10" :
case "mail" :
@@ -479,6 +479,7 @@ if ( isset($action) )
$restart = true;
break;
case "web" :
+ case "video" :
case "tools" :
case "highband" :
case "medband" :
diff --git a/web/zm_html.php b/web/zm_html.php
index b61c3ecac..a6e125d42 100644
--- a/web/zm_html.php
+++ b/web/zm_html.php
@@ -67,7 +67,7 @@ $bw_array = array(
"low"=>$zmSlangLow
);
-if ( ZM_WEB_VIDEO_STREAM_METHOD == 'mpeg' )
+if ( ZM_VIDEO_STREAM_METHOD == 'mpeg' )
{
$rates = array(
"10000" => "100x",
diff --git a/web/zm_html_view_event.php b/web/zm_html_view_event.php
index 248ef8433..7143bd954 100644
--- a/web/zm_html_view_event.php
+++ b/web/zm_html_view_event.php
@@ -263,9 +263,9 @@ if ( $mode == "stream" )
?>
-"
+
@@ -289,7 +289,7 @@ type="application/x-oleobject">
?>
|