]> source.dussan.org Git - nextcloud-server.git/commitdiff
print time in 24h format
authorArthur Schiwon <blizzz@owncloud.com>
Fri, 23 May 2014 17:12:51 +0000 (19:12 +0200)
committerArthur Schiwon <blizzz@owncloud.com>
Fri, 23 May 2014 17:12:51 +0000 (19:12 +0200)
core/command/user/lastseen.php

index b2788c0030562c661449744abc3f168cdf2fe225..7a8db013e3ac363d78b9754df3da333178e77e29 100644 (file)
@@ -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'));
                }
        }
 }