diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-04-02 16:39:21 +0300 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-04-02 16:39:21 +0300 |
commit | 8000f9db74ef2890cac74a34132c2550e4be6f11 (patch) | |
tree | 628e3bce3975acf4eb059f1988cdbb54aa67a8a9 /settings/templates | |
parent | 48afa39292c491ddaef8ecd3334ee2117cd410a9 (diff) | |
download | nextcloud-server-8000f9db74ef2890cac74a34132c2550e4be6f11.tar.gz nextcloud-server-8000f9db74ef2890cac74a34132c2550e4be6f11.zip |
Unescape the update hint
Fixes #2647
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 9d7a5d9a4cf..fdaba95ac17 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -230,7 +230,7 @@ endfor;?> <fieldset class="personalblock"> <legend><strong><?php p($l->t('Version'));?></strong></legend> <strong>ownCloud</strong> <?php p(OC_Util::getVersionString()); ?> <?php p(OC_Util::getEditionString()); ?> - (<?php p(OC_Updater::ShowUpdatingHint()); ?>)<br/> + (<?php print_unescaped(OC_Updater::ShowUpdatingHint()); ?>)<br/> <?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>.')); ?> </fieldset> |