diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-25 13:24:50 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-25 13:24:50 +0200 |
commit | 44f3fcc187ed01a856dbd0ebdb2f2a090072d528 (patch) | |
tree | a1ec06564d28ca26293dc3c441b485ea994d54db /settings/templates | |
parent | 15bda3c57d68860f1da76a9682367719776c7eb9 (diff) | |
download | nextcloud-server-44f3fcc187ed01a856dbd0ebdb2f2a090072d528.tar.gz nextcloud-server-44f3fcc187ed01a856dbd0ebdb2f2a090072d528.zip |
fix internal links in security & setup warnings, resolves #1048
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/admin/server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/admin/server.php b/settings/templates/admin/server.php index a15705a90e2..02d247e1b18 100644 --- a/settings/templates/admin/server.php +++ b/settings/templates/admin/server.php @@ -145,7 +145,7 @@ <ul class="warnings hidden"></ul> <ul class="info hidden"></ul> <p class="hint hidden"> - <?php print_unescaped($l->t('Please double check the <a target="_blank" rel="noreferrer" 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'))); ?> + <?php print_unescaped($l->t('Please double check the <a target="_blank" rel="noreferrer" href="%s">installation guides ↗</a>, and check for any errors or warnings in the <a href="%s">log</a>.', [link_to_docs('admin-install'), \OC::$server->getURLGenerator()->linkToRoute('settings.AdminSettings.index', ['section' => 'logging'])] )); ?> </p> </div> <div id="security-warning-state"> |