From 58c861cd670403ca138d83353b2f8c688e1e6bdd Mon Sep 17 00:00:00 2001 From: stan Date: Wed, 16 Jul 2008 15:56:48 +0000 Subject: [PATCH] Fixed function call error git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2569 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/skins/classic/views/watch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/watch.php b/web/skins/classic/views/watch.php index 9d76b4c0d..10bb58e12 100644 --- a/web/skins/classic/views/watch.php +++ b/web/skins/classic/views/watch.php @@ -102,7 +102,7 @@ elseif ( $streamMode == "jpeg" ) { if ( canStreamNative() ) outputImageStream( "liveStream", $streamSrc, reScale( $monitor['Width'], $_REQUEST['scale'] ), reScale( $monitor['Height'], $_REQUEST['scale'] ), $monitor['Name'] ); - elseif ( canStreamApplet ) + elseif ( canStreamApplet() ) outputHelperStream( "liveStream", $streamSrc, reScale( $monitor['Width'], $_REQUEST['scale'] ), reScale( $monitor['Height'], $_REQUEST['scale'] ), $monitor['Name'] ); } else