Fix zmcontrol.pl command line to not use = to match with usage elsewhere

pull/3054/head
Isaac Connor 2020-09-21 11:24:17 -04:00
parent b16d4045ee
commit 3e3af0bca5
1 changed files with 1 additions and 1 deletions

View File

@ -567,7 +567,7 @@ class Monitor extends ZM_Object {
return false;
}
} else if ( $command != 'quit' ) {
$command = ZM_PATH_BIN.'/zmcontrol.pl '.$command.' --id='.$this->{'Id'};
$command = ZM_PATH_BIN.'/zmcontrol.pl '.$command.' --id '.$this->{'Id'};
// Can't connect so use script
$ctrlOutput = exec(escapeshellcmd($command));