diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-22 01:28:43 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-22 01:28:43 -0700 |
commit | cadd71ec8a02fc5619a9347109f9e588e13b3e3b (patch) | |
tree | f841b9be9d84be2299d3cfa0c4a74f3efed36505 /settings | |
parent | 9d976013daf971edf0c06460932e57de533c2ccf (diff) | |
parent | 87a09156f8f6b95119b35a5c7bdaafdcd263aa80 (diff) | |
download | nextcloud-server-cadd71ec8a02fc5619a9347109f9e588e13b3e3b.tar.gz nextcloud-server-cadd71ec8a02fc5619a9347109f9e588e13b3e3b.zip |
Merge pull request #5455 from owncloud/fixing-2423-master
introduce link_to_docs() and migrate links
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/admin.php | 2 | ||||
-rw-r--r-- | settings/templates/personal.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index a2c877340ee..a5724bf3b17 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -30,7 +30,7 @@ if (!$_['isWebDavWorking']) { <span class="securitywarning"> <?php p($l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.')); ?> - <?php print_unescaped($l->t('Please double check the <a href="%s">installation guides</a>.', $theme->getDocBaseUrl().'/server/5.0/admin_manual/installation.html')); ?> + <?php print_unescaped($l->t('Please double check the <a href="%s">installation guides</a>.', link_to_docs('admin-install'))); ?> </span> </fieldset> diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 60c509b4a1c..6c758e659a8 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -132,7 +132,7 @@ if($_['passwordChangeSupported']) { <fieldset class="personalblock"> <h2><?php p($l->t('WebDAV'));?></h2> <code><?php print_unescaped(OC_Helper::linkToRemote('webdav')); ?></code><br /> - <em><?php print_unescaped($l->t('Use this address to <a href="%s/server/5.0/user_manual/files/files.html" target="_blank">access your Files via WebDAV</a>', array($theme->getDocBaseUrl())));?></em> + <em><?php print_unescaped($l->t('Use this address to <a href="%s" target="_blank">access your Files via WebDAV</a>', array(link_to_docs('user-webdav'))));?></em> </fieldset> <?php foreach($_['forms'] as $form) { |