diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-10 17:24:43 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-10 17:24:43 +0100 |
commit | ae6c3c15393aa928aa13f913b9e96cb642b66c2b (patch) | |
tree | e4ac2075a1668e8bf2a1f06c3861b66b5c8bcf38 /settings | |
parent | ab1ea5ccc4fc1d31e98a9fe930be35673fc0a0b3 (diff) | |
parent | 01b9f07ac8ea5674a18fefcc06241b949e05d62d (diff) | |
download | nextcloud-server-ae6c3c15393aa928aa13f913b9e96cb642b66c2b.tar.gz nextcloud-server-ae6c3c15393aa928aa13f913b9e96cb642b66c2b.zip |
Merge pull request #21123 from owncloud/remove-db-locking-performance-warning-master
Remove info about database locking performance
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/admin.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index f3de51a23c3..2b813257a77 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -181,13 +181,7 @@ if ($_['cronErrors']) { <div class="loading"></div> <ul class="errors hidden"></ul> <ul class="warnings hidden"></ul> - <ul class="info hidden"> - <?php if ($_['fileLockingType'] === 'db'):?> - <li> - <?php print_unescaped($l->t('Transactional file locking is using the database as locking backend, for best performance it\'s advised to configure a memcache for locking. See the <a target="_blank" href="%s">documentation ↗</a> for more information.', link_to_docs('admin-transactional-locking'))); ?> - </li> - <?php endif; ?> - </ul> + <ul class="info hidden"></ul> <p class="hint hidden"> <?php print_unescaped($l->t('Please double check the <a target="_blank" href="%s">installation guides ↗</a>, and check for any errors or warnings in the <a href="#log-section">log</a>.', link_to_docs('admin-install'))); ?> </p> |