aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'));
}
}
}