summaryrefslogtreecommitdiff
path: root/includes/view/Shifts_view.php
diff options
context:
space:
mode:
authorRobert Oehlmann <waterfish33@gmail.com>2014-11-03 19:28:43 +0100
committerRobert Oehlmann <waterfish33@gmail.com>2014-11-03 19:28:43 +0100
commitc4039f72bb12684b0733281ade52696ed4019327 (patch)
treeb92ce543a55f91bf48f4791f0532418485ae6eb7 /includes/view/Shifts_view.php
parentb221b362dc25fcc9686c068b2b5976e157014686 (diff)
Fixed shift duration calculation
Fixes issue #136
Diffstat (limited to 'includes/view/Shifts_view.php')
-rw-r--r--includes/view/Shifts_view.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/view/Shifts_view.php b/includes/view/Shifts_view.php
index 824f519a..d0e7d809 100644
--- a/includes/view/Shifts_view.php
+++ b/includes/view/Shifts_view.php
@@ -4,8 +4,8 @@
* @param Shift $shift
*/
function shift_length($shift) {
- $length = round(($shift['end'] - $shift['start']) / (60 * 60), 0) . ":";
+ $length = floor(($shift['end'] - $shift['start']) / (60 * 60)) . ":";
$length .= str_pad((($shift['end'] - $shift['start']) % (60 * 60)) / 60, 2, "0", STR_PAD_LEFT) . "h";
return $length;
}
-?> \ No newline at end of file
+?>