Skip to content

Commit

Permalink
Merge branch '4.4' into 5.2
Browse files Browse the repository at this point in the history
* 4.4:
  install compatible versions of mongodb/mongodb only
  fix resolving parent/self/static type annotations
  [Console] fix QuestionHelper::getHiddenResponse() not working with space in project directory name
  [WebLink] Escape double quotes in attributes values
  • Loading branch information
xabbuh committed Feb 17, 2021
2 parents 65fcd28 + 3650057 commit 72cd4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/QuestionHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ private function getHiddenResponse(OutputInterface $output, $inputStream, bool $
$exe = $tmpExe;
}

$sExec = shell_exec($exe);
$sExec = shell_exec('"'.$exe.'"');
$value = $trimmable ? rtrim($sExec) : $sExec;
$output->writeln('');

Expand Down

0 comments on commit 72cd4bb

Please sign in to comment.