From b7b8b142e354e701ca4a955057b22f5d6c1556bd Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Sat, 29 Dec 2012 16:58:40 +0100 Subject: fixed strange hour sum --- includes/pages/user_myshifts.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'includes/pages/user_myshifts.php') diff --git a/includes/pages/user_myshifts.php b/includes/pages/user_myshifts.php index 0bf077cc..36ab9f36 100644 --- a/includes/pages/user_myshifts.php +++ b/includes/pages/user_myshifts.php @@ -95,7 +95,6 @@ function user_myshifts() { $shift_entries[] = $user_source['Nick']; } $html .= join(", ", $shift_entries); - $timesum += $shift['end'] - $shift['start']; } $html .= ''; @@ -111,6 +110,8 @@ function user_myshifts() { if ($html == "") $html = '' . ucfirst(Get_Text('none')) . '...' . sprintf(Get_Text('pub_myshifts_goto_shifts'), page_link_to('user_shifts')) . ''; + $timesum += $shift['end'] - $shift['start']; + return msg().template_render('../templates/user_myshifts.html', array ( 'intro' => sprintf(Get_Text('pub_myshifts_intro'), $LETZTES_AUSTRAGEN), 'shifts' => $html, -- cgit v1.2.3-54-g00ecf