make shift entry comment private again
This commit is contained in:
parent
769d8c4af9
commit
b60ad7ccfb
|
@ -338,9 +338,13 @@ function User_view_myshift($shift, $user_source, $its_me)
|
||||||
'time' => date('H:i', $shift['start']) . ' - ' . date('H:i', $shift['end']),
|
'time' => date('H:i', $shift['start']) . ' - ' . date('H:i', $shift['end']),
|
||||||
'room' => $shift['Name'],
|
'room' => $shift['Name'],
|
||||||
'shift_info' => $shift_info,
|
'shift_info' => $shift_info,
|
||||||
'comment' => $shift['Comment']
|
'comment' => ''
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if($its_me) {
|
||||||
|
$myshift['comment'] = $shift['Comment'];
|
||||||
|
}
|
||||||
|
|
||||||
if ($shift['freeloaded']) {
|
if ($shift['freeloaded']) {
|
||||||
if (in_array('user_shifts_admin', $privileges)) {
|
if (in_array('user_shifts_admin', $privileges)) {
|
||||||
$myshift['comment'] .= '<br /><p class="error">' . _('Freeloaded') . ': ' . $shift['freeload_comment'] . '</p>';
|
$myshift['comment'] .= '<br /><p class="error">' . _('Freeloaded') . ': ' . $shift['freeload_comment'] . '</p>';
|
||||||
|
|
Loading…
Reference in New Issue