diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-11 09:44:00 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-11 09:44:00 +0100 |
commit | 732987b99fd4ef113fd8ec1bbe7e98bc9264028e (patch) | |
tree | a2780ddeb5179ec77fe90feaaaf840c4ab787c3f | |
parent | d032d2f0f442ad7928cfed10d33a871b8e777db7 (diff) | |
download | nextcloud-server-732987b99fd4ef113fd8ec1bbe7e98bc9264028e.tar.gz nextcloud-server-732987b99fd4ef113fd8ec1bbe7e98bc9264028e.zip |
Make doc links inline
-rw-r--r-- | settings/templates/admin.php | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 2a617387a83..91e76d24fbb 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -128,10 +128,7 @@ if (!$_['has_fileinfo']) { if ($_['fileLockingType'] === 'none') { ?> <li> - <?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> + <?php print_unescaped($l->t('Transactional file locking is disabled, this might lead to issues with race conditions. Enable \'filelocking.enabled\' in config.php to avoid these problems. See the <a target="_blank" href="%s">documentation ↗</a> for more information.', link_to_docs('admin-transactional-locking'))); ?> </li> <?php } @@ -187,10 +184,7 @@ if ($_['cronErrors']) { <ul class="info hidden"> <?php if ($_['fileLockingType'] === 'db'):?> <li> - <?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> + <?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> |