diff options
author | Kate <26026535+provokateurin@users.noreply.github.com> | 2025-03-26 10:14:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-26 10:14:24 +0100 |
commit | e67eba5e2b62485e17d7d43fe07b0753bee55cc1 (patch) | |
tree | 3e6338f5552191b8c238f0cd915210230bdd322e | |
parent | d1713603c5a0f611951ea2f702c57583d100ec3e (diff) | |
parent | e2507b23bd740c735ab49e31f148d957d2b6c8ff (diff) | |
download | nextcloud-server-e67eba5e2b62485e17d7d43fe07b0753bee55cc1.tar.gz nextcloud-server-e67eba5e2b62485e17d7d43fe07b0753bee55cc1.zip |
Merge pull request #51594 from nextcloud/fix/occ/config-fileowner-suppress-errors
fix(occ): Suppress errors when checking config.php fileowner
-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; } |