diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-22 14:06:51 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-22 14:06:51 +0200 |
commit | f4eae03f20674423cbe9034fdbeb30125157e6fc (patch) | |
tree | 1ecd2fb77f807e4a75a64d29f8a08afa20fefe6a /settings | |
parent | bb18fe138469ec07da746ddf4045eff8c91022f9 (diff) | |
download | nextcloud-server-f4eae03f20674423cbe9034fdbeb30125157e6fc.tar.gz nextcloud-server-f4eae03f20674423cbe9034fdbeb30125157e6fc.zip |
date printed in the admin section regarding last execution time is already displayed in the users timezone - no need to append UTC
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 9ceebad4ee1..bfd1c676b64 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -221,7 +221,7 @@ if ($_['suggestedOverwriteWebroot']) { <?php if ($_['cron_log']): ?> <p class="cronlog inlineblock"> <?php if ($_['lastcron'] !== false): - $human_time = OC_Util::formatDate($_['lastcron']) . " UTC"; + $human_time = OC_Util::formatDate($_['lastcron']); if (time() - $_['lastcron'] <= 3600): ?> <span class="cronstatus success"></span> <?php p($l->t("Last cron was executed at %s.", array($human_time))); |