From 8ca71f66cd37bac2456ac2b2faec3572c103b574 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Sat, 29 Dec 2012 16:02:27 +0100 Subject: fixed leaving done shifts by angels bug --- includes/pages/user_myshifts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/pages/user_myshifts.php b/includes/pages/user_myshifts.php index bfb234ff..8f6e4d56 100644 --- a/includes/pages/user_myshifts.php +++ b/includes/pages/user_myshifts.php @@ -103,7 +103,7 @@ function user_myshifts() { $html .= ''; if ($id == $user['UID']) $html .= img_button(page_link_to('user_myshifts') . '&edit=' . $shift['id'], 'pencil', 'edit'); - if (($shift['start'] - time() > $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges)) + if (($shift['start'] > time() + $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges)) $html .= img_button(page_link_to('user_myshifts') . (($id != $user['UID'])? '&id=' . $id : '') . '&cancel=' . $shift['id'], 'cross', 'sign_off'); $html .= ''; $html .= ''; -- cgit v1.2.3-54-g00ecf