diff options
Diffstat (limited to 'includes/model/ShiftEntry_model.php')
-rw-r--r-- | includes/model/ShiftEntry_model.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/model/ShiftEntry_model.php b/includes/model/ShiftEntry_model.php index 3a7254ad..bcc28f05 100644 --- a/includes/model/ShiftEntry_model.php +++ b/includes/model/ShiftEntry_model.php @@ -92,7 +92,7 @@ function ShiftEntry_create($shift_entry) $shift_entry['UID'], $shift_entry['Comment'], $shift_entry['freeload_comment'], - $shift_entry['freeloaded'], + (int)$shift_entry['freeloaded'], ] ); } @@ -114,7 +114,7 @@ function ShiftEntry_update($shift_entry) [ $shift_entry['Comment'], $shift_entry['freeload_comment'], - $shift_entry['freeloaded'], + (int)$shift_entry['freeloaded'], $shift_entry['id'] ] ); |