Skip to content

Commit

Permalink
Merge pull request #47624 from nextcloud/backport/47567/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(config): Avoid error messages for restricted opcache API
  • Loading branch information
joshtrichards authored Aug 30, 2024
2 parents 74bca6c + e25ead6 commit 3dd4300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private function readData() {

// Invalidate opcache (only if the timestamp changed)
if (function_exists('opcache_invalidate')) {
opcache_invalidate($file, false);
@opcache_invalidate($file, false);
}

$filePointer = @fopen($file, 'r');
Expand Down

0 comments on commit 3dd4300

Please sign in to comment.