Skip to content

Commit

Permalink
fix(config): Suppress error at install time
Browse files Browse the repository at this point in the history
Signed-off-by: Josh <[email protected]>
  • Loading branch information
joshtrichards authored Sep 27, 2024
1 parent 341b31b commit ce51cec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/private/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ private function readData() {
@opcache_invalidate($file, false);
}

$filePointer = @fopen($file, 'r');
// suppressor doesn't work here at boot time since it'll go via our onError custom error handler
$filePointer = file_exists($file) ? @fopen($file, 'r') : false;
if ($filePointer === false) {
// e.g. wrong permissions are set
if ($file === $this->configFilePath) {
Expand Down

0 comments on commit ce51cec

Please sign in to comment.