diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-20 13:17:21 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-04-20 13:17:21 +0200 |
commit | 06e60f88c5adbe6190aafbd34ac641a76bebc37d (patch) | |
tree | e8c27c18f38b306d516664d964adbdc4b72687ca /settings/Controller/CheckSetupController.php | |
parent | 8c703c954d7488067b50df4cc6616811e1434494 (diff) | |
download | nextcloud-server-06e60f88c5adbe6190aafbd34ac641a76bebc37d.tar.gz nextcloud-server-06e60f88c5adbe6190aafbd34ac641a76bebc37d.zip |
Don't assume the admin didn't configure Opcache correctly...
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'settings/Controller/CheckSetupController.php')
-rw-r--r-- | settings/Controller/CheckSetupController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php index 5e2aa365f67..58de0f4e6d1 100644 --- a/settings/Controller/CheckSetupController.php +++ b/settings/Controller/CheckSetupController.php @@ -373,7 +373,7 @@ Raw output * Checks whether a PHP opcache is properly set up * @return bool */ - private function isOpcacheProperlySetup() { + protected function isOpcacheProperlySetup() { $iniWrapper = new IniGetWrapper(); $isOpcacheProperlySetUp = true; |