summaryrefslogtreecommitdiffstats
path: root/settings/templates/admin.php
diff options
context:
space:
mode:
authorBjörn Schießle <bjoern@schiessle.org>2015-11-18 11:49:10 +0100
committerBjörn Schießle <bjoern@schiessle.org>2015-11-19 18:07:10 +0100
commit97c60fd21794a6a0a56dc69ba8b77ab93b5d212c (patch)
tree6ceeb7b36df64b0fe7400014fcaa485cb770bf23 /settings/templates/admin.php
parentc5e41450f6f1fb00acdd84ab9af84f0217025622 (diff)
downloadnextcloud-server-97c60fd21794a6a0a56dc69ba8b77ab93b5d212c.tar.gz
nextcloud-server-97c60fd21794a6a0a56dc69ba8b77ab93b5d212c.zip
change 'cronstatus' to 'status' so that it can be used in other apps too
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r--settings/templates/admin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 24af4964248..0721c0e0afb 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -290,18 +290,18 @@ if ($_['cronErrors']) {
$relative_time = relative_modified_date($_['lastcron']);
$absolute_time = OC_Util::formatDate($_['lastcron']);
if (time() - $_['lastcron'] <= 3600): ?>
- <span class="cronstatus success"></span>
+ <span class="status success"></span>
<span class="crondate" original-title="<?php p($absolute_time);?>">
<?php p($l->t("Last cron job execution: %s.", [$relative_time]));?>
</span>
<?php else: ?>
- <span class="cronstatus error"></span>
+ <span class="status error"></span>
<span class="crondate" original-title="<?php p($absolute_time);?>">
<?php p($l->t("Last cron job execution: %s. Something seems wrong.", [$relative_time]));?>
</span>
<?php endif;
else: ?>
- <span class="cronstatus error"></span>
+ <span class="status error"></span>
<?php p($l->t("Cron was not executed yet!"));
endif; ?>
</p>