Fixed monitor deleting bug.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@742 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2004-01-14 21:17:54 +00:00
parent 05f6066a81
commit 32b0ceecc7
1 changed files with 3 additions and 3 deletions

View File

@ -123,9 +123,9 @@ if ( isset($action) )
}
}
}
if ( isset($mid) && canEdit( 'Monitors', $mid ) )
if ( canEdit( 'Monitors', $mid ) )
{
if ( $action == "function" && $mid )
if ( $action == "function" && isset( $mid ) )
{
$sql = "select * from Monitors where Id = '$mid'";
$result = mysql_query( $sql );
@ -318,7 +318,7 @@ if ( isset($action) )
$refresh_parent = true;
}
}
elseif ( $action == "settings" )
elseif ( $action == "settings" && isset( $mid ) )
{
$zmu_command = ZMU_COMMAND." -m $mid -B$new_brightness -C$new_contrast -H$new_hue -O$new_colour";
$zmu_output = exec( escapeshellcmd( $zmu_command ) );