date printed in the admin section regarding last execution time is already displayed in the users timezone - no need to append UTC

This commit is contained in:
Thomas Müller 2014-09-22 14:06:51 +02:00
parent bb18fe1384
commit f4eae03f20
1 changed files with 1 additions and 1 deletions

View File

@ -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)));