diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-03-29 00:42:22 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-03-29 00:43:44 +0200 |
commit | 99675b46e92dc59c1971158ee9295bc3242fd3b8 (patch) | |
tree | f34f7d6fdff11ef2bcb9eaf5d47de13e6d3aa5f1 /apps/updatenotification/templates | |
parent | 2c682ad34d13885ec1c0c784c2140fedfcf9c4cb (diff) | |
download | nextcloud-server-99675b46e92dc59c1971158ee9295bc3242fd3b8.tar.gz nextcloud-server-99675b46e92dc59c1971158ee9295bc3242fd3b8.zip |
Replace unecessary unescaped prints with print
There's no need to have those unescaped from what I can see.
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps/updatenotification/templates')
-rw-r--r-- | apps/updatenotification/templates/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/templates/admin.php b/apps/updatenotification/templates/admin.php index 78337eb313b..28a47992410 100644 --- a/apps/updatenotification/templates/admin.php +++ b/apps/updatenotification/templates/admin.php @@ -23,7 +23,7 @@ <a href="<?php p($_['downloadLink']); ?>" class="button<?php if ($_['updaterEnabled']) { p(' hidden'); } ?>"><?php p($l->t('Download now')) ?></a> <?php } ?> <?php } else { ?> - <strong><?php print_unescaped($l->t('Your version is up to date.')); ?></strong> + <strong><?php p($l->t('Your version is up to date.')); ?></strong> <span class="icon-info svg" title="<?php p($l->t('Checked on %s', [$lastCheckedDate])) ?>"></span> <?php } ?> |