Browse Source
Fix detection if opcache extension is loaded
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/10197/head
Morris Jobke
7 years ago
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with
1 additions and
1 deletions
-
settings/Controller/CheckSetupController.php
|
|
@ -526,7 +526,7 @@ Raw output |
|
|
|
} |
|
|
|
|
|
|
|
protected function hasOpcacheLoaded(): bool { |
|
|
|
return extension_loaded('opcache'); |
|
|
|
return function_exists('opcache_get_status'); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|