mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:02:53 +00:00
Remove wrong by reference variable init in Console\DocBloxErrorChecker
This commit is contained in:
parent
bba12da167
commit
52e07a9e6d
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ HELP;
|
|||
private function commandExists($command)
|
||||
{
|
||||
$prefix = strpos(strtolower(PHP_OS),'win') > -1 ? 'where' : 'which';
|
||||
exec("{$prefix} {$command}", $output = [], $returnVal = 0);
|
||||
exec("{$prefix} {$command}", $output, $returnVal);
|
||||
return $returnVal === 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue