diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-23 13:45:21 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-23 13:45:21 +0200 |
commit | c587a4aaa212a48aca0b34fc2f9625774e02c472 (patch) | |
tree | 125b5ba8c98d5137e63e71c003135a9b338586d9 /settings | |
parent | a062db4fd02feb1a0eff48eb130da7cc48c49899 (diff) | |
parent | 814114ab8eda5d383f4c620f3854cfefcdb6895d (diff) | |
download | nextcloud-server-c587a4aaa212a48aca0b34fc2f9625774e02c472.tar.gz nextcloud-server-c587a4aaa212a48aca0b34fc2f9625774e02c472.zip |
Merge pull request #11222 from owncloud/store-users-timezone-master
send browsers timezone back tp the server on login
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))); |