aboutsummaryrefslogtreecommitdiffstats
path: root/core/command
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-05-23 19:12:51 +0200
committerArthur Schiwon <blizzz@owncloud.com>2014-05-23 19:12:51 +0200
commit7f7999c7d870c1024246cd49917554513cbab76b (patch)
tree7120fceac72fccb2467252da5e90f3969420e1a9 /core/command
parent2e85d5a852aeda82a470c8cdc55ff143fdc570e5 (diff)
downloadnextcloud-server-7f7999c7d870c1024246cd49917554513cbab76b.tar.gz
nextcloud-server-7f7999c7d870c1024246cd49917554513cbab76b.zip
print time in 24h format
Diffstat (limited to 'core/command')
-rw-r--r--core/command/user/lastseen.php2
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'));
}
}
}