diff options
| author | 2015-01-15 11:20:16 +0100 | |
|---|---|---|
| committer | 2015-01-15 11:20:16 +0100 | |
| commit | 556f4ad4bfa722e3350f20ab91a08f0af1d11f9e (patch) | |
| tree | 96183f5387e2130b139115d91d7937c13aeca800 /app/views/update/index.phtml | |
| parent | 81dac9975d0c662467cc2625154da2568457e3dd (diff) | |
Remove restriction of 1h for update checking
Diffstat (limited to 'app/views/update/index.phtml')
| -rw-r--r-- | app/views/update/index.phtml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/app/views/update/index.phtml b/app/views/update/index.phtml index 4c88a0d18..da1bc7ef5 100644 --- a/app/views/update/index.phtml +++ b/app/views/update/index.phtml @@ -18,16 +18,10 @@ <span class="alert-head"><?php echo $this->message['title']; ?></span> <?php echo $this->message['body']; ?> </p> - <?php } elseif ($this->check_last_hour) { ?> - <p class="alert alert-warn"> - <span class="alert-head"><?php echo _t('gen.short.damn'); ?></span> - <?php echo _t('admin.update.none'); ?> - </p> <?php } ?> <?php - if (!$this->check_last_hour && - (empty($this->message) || $this->message['status'] !== 'good')) { + if (empty($this->message) || $this->message['status'] !== 'good') { ?> <p> <a href="<?php echo _url('update', 'check'); ?>" class="btn"><?php echo _t('admin.update.check'); ?></a> |
