cleanup old unused files, display tshirt size in admin_active

This commit is contained in:
Philip Häusler 2011-12-29 14:58:50 +01:00
parent 8968763ff3
commit b864f2c5b1
3 changed files with 16 additions and 11 deletions

View File

@ -1,5 +1,7 @@
<?php
function admin_active() {
global $tshirt_sizes;
$msg = "";
$search = "";
$count = 0;
@ -75,6 +77,7 @@ function admin_active() {
}
$table .= '<tr>';
$table .= '<td>' . $usr['Nick'] . '</td>';
$table .= '<td>' . $tshirt_sizes[$usr['Size']] . '</td>';
$table .= '<td>' . $usr['shift_count'] . '</td>';
if ($usr['shift_count'] == 0)

View File

@ -290,10 +290,9 @@ function view_user_shifts() {
$info[] = date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']);
if (count($_SESSION['user_shifts']['rooms']) > 1)
$info[] = $shift['room_name'];
$shift_row = '<tr><td>' . join('<br />', $info) . '</td>';
$shift_row .= '<td>' . $shift['name'];
//$shift_row = '<tr><td>' . date(($_SESSION['user_shifts']['id'] == 0 ? "Y-m-d " : "") . "H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . '</td><td>' . $shift['name'];
if (in_array('admin_shifts', $privileges))
$shift_row .= ' <a href="?p=user_shifts&edit_shift=' . $shift['SID'] . '">[edit]</a> <a href="?p=user_shifts&delete_shift=' . $shift['SID'] . '">[x]</a>';
$shift_row .= '<br />';

View File

@ -16,6 +16,9 @@
<th>
Nickname
</th>
<th>
Size
</th>
<th>
Shifts
</th>