diff options
author | Jakob Sack <mail@jakobsack.de> | 2015-02-28 21:49:23 +0100 |
---|---|---|
committer | Jakob Sack <mail@jakobsack.de> | 2015-02-28 21:49:23 +0100 |
commit | 7a84c90d71e4fb45d551c4d72f81312e19f245ab (patch) | |
tree | ef902ed9e50a258aa84fd51b54aeaafabb3a20ff | |
parent | 0efed5c216315e9feae45f3193c510d9007f682a (diff) | |
download | nextcloud-server-7a84c90d71e4fb45d551c4d72f81312e19f245ab.tar.gz nextcloud-server-7a84c90d71e4fb45d551c4d72f81312e19f245ab.zip |
Rename $human_time to $relative_time in cron settings
-rw-r--r-- | settings/templates/admin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 7ed1afbd26e..ea91fca499e 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -236,17 +236,17 @@ if ($_['suggestedOverwriteCliUrl']) { <?php if ($_['cron_log']): ?> <p class="cronlog inlineblock"> <?php if ($_['lastcron'] !== false): - $human_time = relative_modified_date($_['lastcron']); + $relative_time = relative_modified_date($_['lastcron']); $absolute_time = OC_Util::formatDate($_['lastcron']); if (time() - $_['lastcron'] <= 3600): ?> <span class="cronstatus success"></span> <span class="crondate" original-title="<?php p($absolute_time);?>"> - <?php p($l->t("Last cron was executed %s.", array($human_time)));?> + <?php p($l->t("Last cron was executed %s.", array($relative_time)));?> </span> <?php else: ?> <span class="cronstatus error"></span> <span class="crondate" original-title="<?php p($absolute_time);?>"> - <?php p($l->t("Last cron was executed %s. Something seems wrong.", array($human_time)));?> + <?php p($l->t("Last cron was executed %s. Something seems wrong.", array($relative_time)));?> </span> <?php endif; else: ?> |