aboutsummaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/templates
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-09-08 10:59:14 +0200
committerJoas Schilling <coding@schilljs.com>2016-09-08 10:59:14 +0200
commit202ae42506e9bbb167889735b2c56ccebace594b (patch)
tree7374b08be73cddf4382e72c1debce42c255ad60a /apps/updatenotification/templates
parentff691b4d8a26c08dcf9555c70a071cdebd1266e6 (diff)
downloadnextcloud-server-202ae42506e9bbb167889735b2c56ccebace594b.tar.gz
nextcloud-server-202ae42506e9bbb167889735b2c56ccebace594b.zip
Show an update button instead of the updater
Diffstat (limited to 'apps/updatenotification/templates')
-rw-r--r--apps/updatenotification/templates/admin.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/updatenotification/templates/admin.php b/apps/updatenotification/templates/admin.php
index 68ef1d423b4..0dd8aec4a04 100644
--- a/apps/updatenotification/templates/admin.php
+++ b/apps/updatenotification/templates/admin.php
@@ -16,7 +16,9 @@
<form id="oca_updatenotification_section" class="followupsection">
<?php if($isNewVersionAvailable === true): ?>
<strong><?php p($l->t('A new version is available: %s', [$newVersionString])); ?></strong>
- <input type="button" id="oca_updatenotification_button" value="<?php p($l->t('Open updater')) ?>">
+ <?php if ($_['downloadLink']): ?>
+ <a href="<?php p($_['downloadLink']); ?>" class="button"><?php p($l->t('Download now')) ?></a>
+ <?php endif; ?>
<?php else: ?>
<strong><?php print_unescaped($l->t('Your version is up to date.')); ?></strong>
<span class="icon-info svg" title="<?php p($l->t('Checked on %s', [$lastCheckedDate])) ?>"></span>