fix: [administration] added missing column

pull/6172/head
iglocska 2020-07-29 18:30:31 +02:00
parent 1c22d5e514
commit 69c3234005
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class StatisticsShell extends AppShell {
echo "\n\n==================================\nSlow queries by user excluding sync\n==================================\nCount | User | Email\n";
foreach ($data['non_sync_action_users'] as $user_id => $count) {
echo sprintf(
"%s | %s\n",
"%s | %s | %s\n",
str_pad($count, 5),
str_pad($user_id, 5),
!empty($users[$user_id]) ? $users[$user_id] : ''