diff options
author | msquare <msquare@notrademark.de> | 2016-12-23 12:46:32 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2016-12-23 12:46:32 +0100 |
commit | 9e804ba91a97bf4ef57939b4cdf4d7590ebd1c15 (patch) | |
tree | 61a3057eee30335fd055fa81b1549c62d63c4a01 | |
parent | 94cc01d4ceeddbc23e83bc66322b96d23a4d5a6d (diff) |
fix that free shifts become green
-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 f9226375..79d348b6 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::OCCUPIED: + case ShiftSignupState::FREE: $this->state = $shiftSignupState->getState(); } } |