Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-04-05 01:41:08 +0400
committerLukas Reschke <lukas@statuscode.ch>2013-04-05 01:41:08 +0400
commit5add0013733cbbbdae4b61eca7707674b74403ba (patch)
treedd2bf1c6730661f59571108593972c4d7a7f663c /settings
parent5317e7071ed41c7312839078b20f5fce4e672886 (diff)
Unescape the update hint
Backport of 8000f9db74ef2890cac74a34132c2550e4be6f11, fixes #2676
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index dd5e89b8f82..992d75e481f 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -229,7 +229,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>