fix wrong brace and needs quotes

This commit is contained in:
Isaac Connor 2016-04-04 12:00:29 -04:00
parent b3fed1767b
commit faa75bbe39
1 changed files with 2 additions and 2 deletions

View File

@ -962,7 +962,7 @@ function daemonControl( $command, $daemon=false, $args=false )
function zmcControl( $monitor, $mode=false ) function zmcControl( $monitor, $mode=false )
{ {
if ( (!ZM_SERVER) or ( ZM_SERVER==$monitor[ServerId}) ) { if ( (!ZM_SERVER) or ( ZM_SERVER==$monitor['ServerId'] ) ) {
$row = NULL; $row = NULL;
if ( $monitor['Type'] == "Local" ) if ( $monitor['Type'] == "Local" )
{ {
@ -993,7 +993,7 @@ function zmcControl( $monitor, $mode=false )
function zmaControl( $monitor, $mode=false ) function zmaControl( $monitor, $mode=false )
{ {
if ( (!ZM_SERVER) or ( ZM_SERVER==$monitor[ServerId}) ) { if ( (!ZM_SERVER) or ( ZM_SERVER==$monitor['ServerId']) ) {
if ( !is_array( $monitor ) ) if ( !is_array( $monitor ) )
{ {
$monitor = dbFetchOne( "select C.*, M.* from Monitors as M left join Controls as C on (M.ControlId = C.Id ) where M.Id=?", NULL, array($monitor) ); $monitor = dbFetchOne( "select C.*, M.* from Monitors as M left join Controls as C on (M.ControlId = C.Id ) where M.Id=?", NULL, array($monitor) );