From 98aac2a429f14d58bc6017195ff4c64209e325b2 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Wed, 2 Jan 2013 14:17:34 +0100 Subject: brought back hour sum on my shifts --- 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 346a74c0..4fec4872 100644 --- a/includes/pages/user_myshifts.php +++ b/includes/pages/user_myshifts.php @@ -101,8 +101,8 @@ function user_myshifts() { $timesum += $shift['end'] - $shift['start']; $myshifts_table[] = $myshift; } - if (count($shifts) == 0) - $html = '' . ucfirst(Get_Text('none')) . '...' . sprintf(Get_Text('pub_myshifts_goto_shifts'), page_link_to('user_shifts')) . ''; + if(count($myshifts_table) > 0) + $myshifts_table[] = array('date' => "Summe:", 'time' => "" . round($timesum / (60*60), 1) . " h", 'room' => "", 'shift_info' => "", 'comment' => "", 'actions' => ""); return page(array( msg(), -- cgit v1.2.3-54-g00ecf