Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(occ): Suppress errors when checking config.php fileowner
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin authored and backportbot[bot] committed Mar 26, 2025
commit 3a506748554b190a7f614c29ed7f8d7127601a60
2 changes: 1 addition & 1 deletion occ
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function dropPrivileges(): void {
}

$configPath = __DIR__ . '/config/config.php';
$uid = fileowner($configPath);
$uid = @fileowner($configPath);
if ($uid === false) {
return;
}
Expand Down
Loading