diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-04-07 11:11:31 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-04-07 12:25:30 +0200 |
commit | 81ec1c8a1ad208457eae772a20174abf4f6bafe7 (patch) | |
tree | 359adb19cb7a4dbe922d22733fa41537ea12e11a /core/js/setupchecks.js | |
parent | 95e55aa4adb690947ff73f2c703dac7010ed2cae (diff) | |
download | nextcloud-server-81ec1c8a1ad208457eae772a20174abf4f6bafe7.tar.gz nextcloud-server-81ec1c8a1ad208457eae772a20174abf4f6bafe7.zip |
Remove hardcoded link to performance docs
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 82c068cd683..9bb3face751 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -61,7 +61,7 @@ } if(!data.isMemcacheConfigured) { messages.push( - t('core', 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href="https://doc.owncloud.org/server/8.0/admin_manual/configuration_server/performance_tuning.html">documentation</a>.') + t('core', 'No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href="{docLink}">documentation</a>.', {docLink: data.memcacheDocs}) ); } } else { |