summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/base.php b/lib/base.php
index fb93b331d12..1f2e90deefd 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -577,13 +577,13 @@ class OC {
if (self::$CLI) {
// Convert l10n string into regular string for usage in database
$staticErrors = [];
- $i = 0;
foreach ($errors as $error) {
echo $error['error'] . "\n";
echo $error['hint'] . "\n\n";
- $staticErrors[$i]['error'] = (string) $error['error'];
- $staticErrors[$i]['hint'] = (string) $error['hint'];
- $i++;
+ $staticErrors[] = [
+ 'error' => (string) $error['error'],
+ 'hint' => (string) $error['hint'],
+ ];
}
try {