diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-04 16:25:37 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-04 16:25:37 +0100 |
commit | b432ea29c9d99a386077c738d6e29d4bc093c15f (patch) | |
tree | ef336d22df1930676962d55f57bcd12edc6c3c4e /settings/templates/help.php | |
parent | 486f49ed72970276462f09074829576588352b2a (diff) | |
download | nextcloud-server-b432ea29c9d99a386077c738d6e29d4bc093c15f.tar.gz nextcloud-server-b432ea29c9d99a386077c738d6e29d4bc093c15f.zip |
Add `rel="noreferrer"` where possible and switch to HTTPS
Just to follow good practise and prevent some automated scanners to complain about "Cross-domain Referer leakage".
Diffstat (limited to 'settings/templates/help.php')
-rw-r--r-- | settings/templates/help.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/settings/templates/help.php b/settings/templates/help.php index 403dde30dae..f559329c6bb 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -16,12 +16,12 @@ <?php } ?> <li> - <a href="http://owncloud.org/support" target="_blank"> + <a href="https://owncloud.org/support" target="_blank" rel="noreferrer"> <?php p($l->t( 'Online Documentation' )); ?> ↗ </a> </li> <li> - <a href="https://forum.owncloud.org" target="_blank"> + <a href="https://forum.owncloud.org" target="_blank" rel="noreferrer"> <?php p($l->t( 'Forum' )); ?> ↗ </a> </li> @@ -29,14 +29,14 @@ <?php if($_['admin']) { ?> <li> <a href="https://github.com/owncloud/core/blob/master/CONTRIBUTING.md" - target="_blank"> + target="_blank" rel="noreferrer"> <?php p($l->t( 'Bugtracker' )); ?> ↗ </a> </li> <?php } ?> <li> - <a href="https://owncloud.com" target="_blank"> + <a href="https://owncloud.com" target="_blank" rel="noreferrer"> <?php p($l->t( 'Commercial Support' )); ?> ↗ </a> </li> |