diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-05-23 19:12:51 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-05-23 19:12:51 +0200 |
commit | 7f7999c7d870c1024246cd49917554513cbab76b (patch) | |
tree | 7120fceac72fccb2467252da5e90f3969420e1a9 /core | |
parent | 2e85d5a852aeda82a470c8cdc55ff143fdc570e5 (diff) | |
download | nextcloud-server-7f7999c7d870c1024246cd49917554513cbab76b.tar.gz nextcloud-server-7f7999c7d870c1024246cd49917554513cbab76b.zip |
print time in 24h format
Diffstat (limited to 'core')
-rw-r--r-- | core/command/user/lastseen.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/user/lastseen.php b/core/command/user/lastseen.php index b2788c00305..7a8db013e3a 100644 --- a/core/command/user/lastseen.php +++ b/core/command/user/lastseen.php @@ -41,7 +41,7 @@ class LastSeen extends Command { $date = new \DateTime(); $date->setTimestamp($lastLogin); $output->writeln($user->getUID() . - '`s last login: ' . $date->format('d.m.Y h:i')); + '`s last login: ' . $date->format('d.m.Y H:i')); } } } |