]> source.dussan.org Git - nextcloud-server.git/commitdiff
date printed in the admin section regarding last execution time is already displayed...
authorThomas Müller <thomas.mueller@tmit.eu>
Mon, 22 Sep 2014 12:06:51 +0000 (14:06 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Mon, 22 Sep 2014 12:06:51 +0000 (14:06 +0200)
settings/templates/admin.php

index 9ceebad4ee149bfc89978cd60dc1d401bea96686..bfd1c676b64f3c70b7c76a5ef57d57539fa97f45 100644 (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)));