From 7f7999c7d870c1024246cd49917554513cbab76b Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 23 May 2014 19:12:51 +0200 Subject: [PATCH] print time in 24h format --- core/command/user/lastseen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/command/user/lastseen.php b/core/command/user/lastseen.php index b2788c0030..7a8db013e3 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')); } } }