diff options
Diffstat (limited to 'core/command/user')
-rw-r--r-- | core/command/user/lastseen.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/command/user/lastseen.php b/core/command/user/lastseen.php index bf5914b2cde..b2788c00305 100644 --- a/core/command/user/lastseen.php +++ b/core/command/user/lastseen.php @@ -40,8 +40,8 @@ class LastSeen extends Command { } else { $date = new \DateTime(); $date->setTimestamp($lastLogin); - $output->writeln($user->getUID() . '`s ' . - ' last login: ' . $date->format('d.m.Y h:i')); + $output->writeln($user->getUID() . + '`s last login: ' . $date->format('d.m.Y h:i')); } } } |