mirror of
https://github.com/nextcloud/server.git
synced 2026-02-23 18:05:02 -05:00
Merge pull request #47567 from nextcloud/jtr/fix-opcache-restricted-env
fix(config): Avoid error messages for restricted opcache API
This commit is contained in:
commit
fef4295ef7
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ class Config {
|
|||
|
||||
// Invalidate opcache (only if the timestamp changed)
|
||||
if (function_exists('opcache_invalidate')) {
|
||||
opcache_invalidate($file, false);
|
||||
@opcache_invalidate($file, false);
|
||||
}
|
||||
|
||||
$filePointer = @fopen($file, 'r');
|
||||
|
|
|
|||
Loading…
Reference in a new issue