diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-16 14:36:44 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-16 14:36:44 +0100 |
commit | c6705ab574bf443fd867fb3c643e886fc91da885 (patch) | |
tree | 5867ac9f19556e0fe1883bf4c3c610442ced7940 /settings/templates/personal.php | |
parent | f7bd543a85f78c54ecd1bcf4ebc7908179a859cb (diff) | |
parent | 8791f1992eb4476fbf427f2ffde22498d3770cb0 (diff) | |
download | nextcloud-server-c6705ab574bf443fd867fb3c643e886fc91da885.tar.gz nextcloud-server-c6705ab574bf443fd867fb3c643e886fc91da885.zip |
Merge pull request #13890 from owncloud/add-no-referrer
Add `rel="noreferrer"` where possible and switch to HTTPS
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 02e61287937..f48737b6db7 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -40,10 +40,10 @@ <p class="center"> <?php print_unescaped($l->t('If you want to support the project <a href="https://owncloud.org/contribute" - target="_blank">join development</a> + target="_blank" rel="noreferrer">join development</a> or <a href="https://owncloud.org/promote" - target="_blank">spread the word</a>!'));?> + target="_blank" rel="noreferrer">spread the word</a>!'));?> </p> <?php endif; ?> @@ -189,7 +189,7 @@ if($_['passwordChangeSupported']) { </select> <?php if (OC_Util::getEditionString() === ''): ?> <a href="https://www.transifex.com/projects/p/owncloud/team/<?php p($_['activelanguage']['code']);?>/" - target="_blank"> + target="_blank" rel="noreferrer"> <em><?php p($l->t('Help translate'));?></em> </a> <?php endif; ?> @@ -294,9 +294,7 @@ if($_['passwordChangeSupported']) { <div class="section"> <h2><?php p($l->t('Version'));?></h2> <strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getHumanVersion()) ?><br /> -<?php if (OC_Util::getEditionString() === ''): ?> - <?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?> -<?php endif; ?> + <?php include('settings.development.notice.php'); ?> </div> <div class="section credits-footer"> |