diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-09-10 15:11:14 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-09-10 15:11:14 +0200 |
commit | d032d2f0f442ad7928cfed10d33a871b8e777db7 (patch) | |
tree | 354a12ec32dfb80aa4cbd117014df3061e11d1a1 /settings/templates/admin.php | |
parent | 24756cf90bff680a8820747af278dd0f80a6369c (diff) | |
download | nextcloud-server-d032d2f0f442ad7928cfed10d33a871b8e777db7.tar.gz nextcloud-server-d032d2f0f442ad7928cfed10d33a871b8e777db7.zip |
Add documentation links for transactional locking
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r-- | settings/templates/admin.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 4f3fb8f25bb..2a617387a83 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -128,7 +128,10 @@ if (!$_['has_fileinfo']) { if ($_['fileLockingType'] === 'none') { ?> <li> - <?php p($l->t('Transitional file locking is disabled, this might lead to issues with race conditions, enable \'filelocking.enabled\' in config.php to improve handling of race conditions.')); ?> + <?php p($l->t('Transactional file locking is disabled, this might lead to issues with race conditions, enable \'filelocking.enabled\' in config.php to improve handling of race conditions.')); ?> + <a target="_blank" class="icon-info svg" + title="<?php p($l->t('Open documentation')); ?>" + href="<?php p(link_to_docs('admin-transactional-locking')); ?>"></a> </li> <?php } @@ -184,7 +187,10 @@ if ($_['cronErrors']) { <ul class="info hidden"> <?php if ($_['fileLockingType'] === 'db'):?> <li> - <?php p($l->t('Transitional file locking is using the database as locking backend, for best performance it\'s advised to configure a memcache for locking. Check the admin documentation for more information about locking and memcaches')); ?> + <?php p($l->t('Transactional file locking is using the database as locking backend, for best performance it\'s advised to configure a memcache for locking. Check the admin documentation for more information about locking and memcaches')); ?> + <a target="_blank" class="icon-info svg" + title="<?php p($l->t('Open documentation')); ?>" + href="<?php p(link_to_docs('admin-transactional-locking')); ?>"></a> </li> <?php endif; ?> </ul> |