1
0
Fork 0

Replaced join() by implode()

pull/3967/head
Anael Ollier 2015-04-28 13:23:00 +02:00
parent 2f82ed7035
commit 27074083cc
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class Svn
}
$errorOutput = $this->process->getErrorOutput();
$fullOutput = join("\n", array($output, $errorOutput));
$fullOutput = implode("\n", array($output, $errorOutput));
// the error is not auth-related
if (false === stripos($fullOutput, 'Could not authenticate to server:')