diff options
author | provokateurin <kate@provokateurin.de> | 2025-03-20 08:03:05 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-03-26 09:14:32 +0000 |
commit | 48a1997bc6928231b4d779c8a57bb218b54cd4e7 (patch) | |
tree | 1b072fd46b2a1d1b464f601076bde9063c2ad276 | |
parent | 1e98bfc8efb89268b3d93c364923598542852890 (diff) | |
download | nextcloud-server-backport/51594/stable30.tar.gz nextcloud-server-backport/51594/stable30.zip |
fix(occ): Suppress errors when checking config.php fileownerbackport/51594/stable30
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; } |