Fixed error if shirt size is not configured

This commit is contained in:
Igor Scheller 2018-10-31 13:18:43 +01:00 committed by msquare
parent a2aaba9cab
commit 82b22160fd
1 changed files with 3 additions and 1 deletions

View File

@ -211,9 +211,11 @@ function admin_active()
} }
} }
$shirtSize = $usr->personalData->shirt_size;
$userData = []; $userData = [];
$userData['nick'] = User_Nick_render($usr); $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) $userData['work_time'] = round($usr['shift_length'] / 60)
. ' min (' . sprintf('%.2f', $usr['shift_length'] / 3600) . ' h)'; . ' min (' . sprintf('%.2f', $usr['shift_length'] / 3600) . ' h)';
$userData['active'] = glyph_bool($usr->state->active == 1); $userData['active'] = glyph_bool($usr->state->active == 1);