fix angel list with multiple vouchers

This commit is contained in:
Philip Häusler 2015-08-12 23:47:06 +02:00
parent 803c0a552f
commit 2823c0e438
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ function Users_view($users, $order_by, $arrived_count, $active_count, $force_act
foreach ($users as &$user) { foreach ($users as &$user) {
$user['Nick'] = User_Nick_render($user); $user['Nick'] = User_Nick_render($user);
$user['Gekommen'] = glyph_bool($user['Gekommen']); $user['Gekommen'] = glyph_bool($user['Gekommen']);
$user['got_voucher'] = glyph_bool($user['got_voucher']); $user['got_voucher'] = $user['got_voucher'];
$user['Aktiv'] = glyph_bool($user['Aktiv']); $user['Aktiv'] = glyph_bool($user['Aktiv']);
$user['force_active'] = glyph_bool($user['force_active']); $user['force_active'] = glyph_bool($user['force_active']);
$user['Tshirt'] = glyph_bool($user['Tshirt']); $user['Tshirt'] = glyph_bool($user['Tshirt']);