diff options
author | MichaIng <micha@dietpi.com> | 2022-03-04 01:24:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 01:24:10 +0100 |
commit | 39803226219a6d84b3773c2addbc5bdf5e52c675 (patch) | |
tree | c7988efa8b06a71993780bd0d78174f9f7c5340f /apps/settings/lib | |
parent | fdf4024ccb2971c5a2755ce77307d0f24e8a9cd0 (diff) | |
parent | 5ac91f1cb8fc8a2ddca1336c976a39385dd8c4cd (diff) | |
download | nextcloud-server-39803226219a6d84b3773c2addbc5bdf5e52c675.tar.gz nextcloud-server-39803226219a6d84b3773c2addbc5bdf5e52c675.zip |
Merge pull request #31267 from nextcloud/enh/docs-link-for-opcache-recommends
Add Nextcloud docs link to OPcache recommends
Diffstat (limited to 'apps/settings/lib')
-rw-r--r-- | apps/settings/lib/Controller/CheckSetupController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index 52954d4193d..b615bfae793 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -469,7 +469,7 @@ Raw output protected function getOpcacheSetupRecommendations(): array { // If the module is not loaded, return directly to skip inapplicable checks if (!extension_loaded('Zend OPcache')) { - return ['The PHP OPcache module is not loaded. <a target="_blank" rel="noreferrer noopener" class="external" href="' . $this->urlGenerator->linkToDocs('admin-php-opcache') . '">For better performance it is recommended</a> to load it into your PHP installation.']; + return ['The PHP OPcache module is not loaded. For better performance it is recommended to load it into your PHP installation.']; } $recommendations = []; |