mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #53591 from nextcloud/backport/53210/stable31
[stable31] fix: clear opcache after app extraction
This commit is contained in:
commit
023bbe7409
1 changed files with 3 additions and 0 deletions
|
|
@ -332,6 +332,9 @@ class Installer {
|
|||
}
|
||||
OC_Helper::copyr($extractDir, $baseDir);
|
||||
OC_Helper::rmdirr($extractDir);
|
||||
if (function_exists('opcache_reset')) {
|
||||
opcache_reset();
|
||||
}
|
||||
return;
|
||||
}
|
||||
// Signature does not match
|
||||
|
|
|
|||
Loading…
Reference in a new issue