diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-03-20 11:38:14 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-03-20 15:27:20 +0100 |
commit | 6ad957906e26b181e597abc25eeed0acebd43482 (patch) | |
tree | 7e321b06ab8732a79b99c9c5b3a8d8e3c2c04672 /core/templates | |
parent | 1f1d87d4130480d5632eac75ac74340b59d5eb19 (diff) | |
download | nextcloud-server-6ad957906e26b181e597abc25eeed0acebd43482.tar.gz nextcloud-server-6ad957906e26b181e597abc25eeed0acebd43482.zip |
Consistently use rel=noreferrer
When linking to external entities we should consistently use rel=noreferrer
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 191acf0b85d..7f179bfa5d6 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -30,7 +30,7 @@ script('core', [ <legend><strong><?php p($l->t('Security warning'));?></strong></legend> <p><?php p($l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.'));?><br> <?php print_unescaped($l->t( - 'For information how to properly configure your server, please see the <a href="%s" target="_blank">documentation</a>.', + 'For information how to properly configure your server, please see the <a href="%s" target="_blank" rel="noreferrer">documentation</a>.', link_to_docs('admin-install') )); ?></p> </fieldset> @@ -85,7 +85,7 @@ script('core', [ <p class="info"> <?php p($l->t( 'Only %s is available.', array($label) )); ?> <?php p($l->t( 'Install and activate additional PHP modules to choose other database types.' )); ?><br> - <a href="<?php print_unescaped(link_to_docs('admin-source_install')); ?>" target="_blank"> + <a href="<?php print_unescaped(link_to_docs('admin-source_install')); ?>" target="_blank" rel="noreferrer"> <?php p($l->t( 'For more details check out the documentation.' )); ?> ↗</a> </p> <input type="hidden" id="dbtype" name="dbtype" value="<?php p($type) ?>"> @@ -164,6 +164,6 @@ script('core', [ <p class="info"> <span class="icon-info-white svg"></span> <?php p($l->t('Need help?'));?> - <a target="_blank" href="<?php p(link_to_docs('admin-install')); ?>"><?php p($l->t('See the documentation'));?> ↗</a> + <a target="_blank" rel="noreferrer" href="<?php p(link_to_docs('admin-install')); ?>"><?php p($l->t('See the documentation'));?> ↗</a> </p> </form> |