diff options
author | msquare <msquare@notrademark.de> | 2016-12-23 12:48:34 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2016-12-23 12:48:34 +0100 |
commit | b8c26b0fd0d14deb4bb89ad81d645baf9d9614a5 (patch) | |
tree | 058e32ff3a3615ba24aebdb349b3c6db229370d4 /includes/model | |
parent | 9e804ba91a97bf4ef57939b4cdf4d7590ebd1c15 (diff) |
fix that free shifts become green
Diffstat (limited to 'includes/model')
-rw-r--r-- | includes/model/ShiftSignupState.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/model/ShiftSignupState.php b/includes/model/ShiftSignupState.php index 79d348b6..f9226375 100644 --- a/includes/model/ShiftSignupState.php +++ b/includes/model/ShiftSignupState.php @@ -63,7 +63,7 @@ class ShiftSignupState { switch ($this->state) { case ShiftSignupState::ANGELTYPE: - case ShiftSignupState::FREE: + case ShiftSignupState::OCCUPIED: $this->state = $shiftSignupState->getState(); } } |