From 1c77c45bcfb74297ccf1513c383b6710a9d26f67 Mon Sep 17 00:00:00 2001 From: msquare Date: Sun, 19 Nov 2017 13:48:34 +0100 Subject: fix problem with default values, fixes #354, fixes #353 --- includes/model/ShiftEntry_model.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/model/ShiftEntry_model.php') 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'] ] ); -- cgit v1.2.3-54-g00ecf