diff options
author | provokateurin <kate@provokateurin.de> | 2025-03-20 08:03:05 +0100 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2025-03-20 08:03:05 +0100 |
commit | e2507b23bd740c735ab49e31f148d957d2b6c8ff (patch) | |
tree | ad9cf5371a73df4645b55641f5553861b7597625 | |
parent | f85154f1e1a3bfcf022cd1833a3028ea9c63380e (diff) | |
download | nextcloud-server-fix/occ/config-fileowner-suppress-errors.tar.gz nextcloud-server-fix/occ/config-fileowner-suppress-errors.zip |
fix(occ): Suppress errors when checking config.php fileownerfix/occ/config-fileowner-suppress-errors
Signed-off-by: provokateurin <kate@provokateurin.de>
-rwxr-xr-x | occ | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ function dropPrivileges(): void { } $configPath = __DIR__ . '/config/config.php'; - $uid = fileowner($configPath); + $uid = @fileowner($configPath); if ($uid === false) { return; } |