1
0
Fork 0

Merge branch '1.1'

pull/5301/head
Jordi Boggiano 2016-05-09 10:31:09 +01:00
commit 0040498e25
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class ProcessExecutor
public function execute($command, &$output = null, $cwd = null)
{
if ($this->io && $this->io->isDebug()) {
$safeCommand = preg_replace('{(://)(?P<user>[^:/\s]+):(?P<password>[^@\s/]+)}i', function ($m) {
$safeCommand = preg_replace_callback('{(://)(?P<user>[^:/\s]+):(?P<password>[^@\s/]+)}i', function ($m) {
if (preg_match('{^[a-f0-9]{12,}$}', $m[1])) {
return '://***:***';
}