X Tutup
Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: user:list now correctly displays user's creation time
  • Loading branch information
Pasquale Tripodi committed Nov 27, 2023
commit 26daaebb82af54f9fb9b3d575877a84080b8c757
2 changes: 1 addition & 1 deletion core/Command/User/ListUsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
break;
case 'creationtime':
$this->add($row, 'creationTime', $user->getCreationTime(), $useKey);
// no break
break;
case 'home':
$this->add($row, 'home', $user->getHome(), $useKey);
break;
Expand Down
X Tutup