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 and solracsf committed Oct 2, 2024
1 parent 5af3575 commit 36b2c15
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 @@ -217,7 +217,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 36b2c15

Please sign in to comment.