mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
fix(config): Avoid error messages for restricted opcache API
Make changes recently added via #44230 match #8188 to avoid failures in restricted hosting environments. Fixes #47562 Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
parent
b4d7498cfb
commit
3e434bcebf
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