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

remotes/origin/fix-10825
Thomas Müller 11 years ago
parent bb18fe1384
commit f4eae03f20
  1. 2
      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)));

Loading…
Cancel
Save