diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-09-06 11:37:36 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-09-06 11:37:36 -0700 |
commit | 4a941829716df412b493d35907e65acc35527583 (patch) | |
tree | 9b372d0162ed0995846eb1d64aa88af8c23f5d23 | |
parent | 46b30ce949d6371bc3d2bcfe42221c599c7a85e3 (diff) |
Stop trying to implode a string. Fixes ticket #1337.
-rw-r--r-- | installer/cli.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/cli.php b/installer/cli.php index e7c81ac3..fe82395a 100644 --- a/installer/cli.php +++ b/installer/cli.php @@ -32,7 +32,7 @@ if (installer::already_installed()) { $errors = installer::check_environment(); if ($errors) { - oops(implode("errors", "\n")); + oops(implode($errors, "\n")); } $config = parse_cli_params(); |