Simplify code
This commit is contained in:
parent
b6d8a48ce1
commit
afb0d742b9
|
@ -577,13 +577,13 @@ class OC {
|
||||||
if (self::$CLI) {
|
if (self::$CLI) {
|
||||||
// Convert l10n string into regular string for usage in database
|
// Convert l10n string into regular string for usage in database
|
||||||
$staticErrors = [];
|
$staticErrors = [];
|
||||||
$i = 0;
|
|
||||||
foreach ($errors as $error) {
|
foreach ($errors as $error) {
|
||||||
echo $error['error'] . "\n";
|
echo $error['error'] . "\n";
|
||||||
echo $error['hint'] . "\n\n";
|
echo $error['hint'] . "\n\n";
|
||||||
$staticErrors[$i]['error'] = (string) $error['error'];
|
$staticErrors[] = [
|
||||||
$staticErrors[$i]['hint'] = (string) $error['hint'];
|
'error' => (string) $error['error'],
|
||||||
$i++;
|
'hint' => (string) $error['hint'],
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue