fix implode() so the separater is always the first argument

This commit is contained in:
Bradley W. Dutton
2020-02-01 20:53:43 -08:00
parent 053d8d06e6
commit 680de0c6d0
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ if (installer::already_installed()) {
$errors = installer::check_environment();
if ($errors) {
oops(implode($errors, "\n"));
oops(implode("\n", $errors));
}
$config = parse_cli_params();