Merge pull request #21766 from nextcloud/fix/21761/regression-in-return-value

Fix regression in return value of OC_Util::checkDataDirectoryPermissi…
This commit is contained in:
Morris Jobke 2020-07-09 10:00:23 +02:00 committed by GitHub
commit 766cadc253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1006,10 +1006,10 @@ class OC_Util {
$perms = substr(decoct(@fileperms($dataDirectory)), -3);
if ($perms[2] !== '0') {
$l = \OC::$server->getL10N('lib');
return [
return [[
'error' => $l->t('Your data directory is readable by other users'),
'hint' => $l->t('Please change the permissions to 0770 so that the directory cannot be listed by other users.'),
];
]];
}
}
return [];