From 106a6788086f9be3ef6d30d1844f512fcbf22e23 Mon Sep 17 00:00:00 2001 From: msquare Date: Sat, 12 Nov 2016 20:15:25 +0100 Subject: fix wrong variable --- includes/model/Shifts_model.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'includes/model/Shifts_model.php') diff --git a/includes/model/Shifts_model.php b/includes/model/Shifts_model.php index 1eba5ba1..392adfaa 100644 --- a/includes/model/Shifts_model.php +++ b/includes/model/Shifts_model.php @@ -101,7 +101,7 @@ function Shift_occupied($shift_id, $angeltype_id) { $needed_angeltypes = NeededAngelTypes_by_shift($shift_id); foreach ($needed_angeltypes as $needed_angeltype) { - if ($needed_angeltype['angel_type_id'] == $angeltype['id']) { + if ($needed_angeltype['angel_type_id'] == $angeltype_id) { return $needed_angeltype['taken'] < $needed_angeltype['count']; } } @@ -112,9 +112,12 @@ function Shift_occupied($shift_id, $angeltype_id) { /** * Check if an angel can sign up for given shift. * - * @param Shift $shift - * @param AngelType $angeltype - * @param array $user_shifts + * @param Shift $shift + * The shift + * @param AngelType $angeltype + * The angeltype to which the user wants to sign up + * @param array $user_shifts + * List of the users shifts */ function Shift_signup_allowed($shift, $angeltype, $user_angeltype = null, $user_shifts = null) { global $user, $privileges; -- cgit v1.2.3-54-g00ecf