From a7c44d8dce7d6e9dcee0bf63ad22608886f413c6 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Sat, 29 Dec 2012 16:55:21 +0100 Subject: fixed strange hour sum --- includes/pages/user_myshifts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes') diff --git a/includes/pages/user_myshifts.php b/includes/pages/user_myshifts.php index 8f6e4d56..0bf077cc 100644 --- a/includes/pages/user_myshifts.php +++ b/includes/pages/user_myshifts.php @@ -95,7 +95,7 @@ function user_myshifts() { $shift_entries[] = $user_source['Nick']; } $html .= join(", ", $shift_entries); - $timesum += ($shift['end'] - $shift['start']) / (60*60); + $timesum += $shift['end'] - $shift['start']; } $html .= ''; @@ -114,7 +114,7 @@ function user_myshifts() { return msg().template_render('../templates/user_myshifts.html', array ( 'intro' => sprintf(Get_Text('pub_myshifts_intro'), $LETZTES_AUSTRAGEN), 'shifts' => $html, - 'time_sum' => $timesum, + 'time_sum' => round($timesum / (60*60), 1), 'msg' => $msg, 'ical_text' => sprintf(Get_Text('inc_schicht_ical_text'), page_link_to_absolute('ical') . '&key=' . $shifts_user['ical_key'], -- cgit v1.2.3-54-g00ecf