summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/pages/admin_active.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/pages/admin_active.php b/includes/pages/admin_active.php
index 5b0beae9..9bd854c9 100644
--- a/includes/pages/admin_active.php
+++ b/includes/pages/admin_active.php
@@ -211,9 +211,11 @@ function admin_active()
}
}
+ $shirtSize = $usr->personalData->shirt_size;
+
$userData = [];
$userData['nick'] = User_Nick_render($usr);
- $userData['shirt_size'] = $tshirt_sizes[$usr->personalData->shirt_size];
+ $userData['shirt_size'] = (isset($tshirt_sizes[$shirtSize]) ? $tshirt_sizes[$shirtSize] : '');
$userData['work_time'] = round($usr['shift_length'] / 60)
. ' min (' . sprintf('%.2f', $usr['shift_length'] / 3600) . ' h)';
$userData['active'] = glyph_bool($usr->state->active == 1);