From ccfc7acbae5349b73e18ff4ee02756935a362464 Mon Sep 17 00:00:00 2001 From: stan Date: Wed, 16 Jul 2008 08:37:59 +0000 Subject: [PATCH] Correct path to control functions git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2533 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/skins/classic/views/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/control.php b/web/skins/classic/views/control.php index dc9f2f7d5..a9af1b29d 100644 --- a/web/skins/classic/views/control.php +++ b/web/skins/classic/views/control.php @@ -45,7 +45,7 @@ foreach( dbFetchAll( $sql ) as $row ) $mids[$row['Id']] = $row['Name']; } -require_once( 'zm_control_funcs.php' ); +require_once( ZM_SKIN_PATH.'/includes/control_functions.php' ); $sql = "select C.*,M.* from Monitors as M inner join Controls as C on (M.ControlId = C.Id ) where M.Id = '".$mid."'"; $monitor = dbFetchOne( $sql );