summaryrefslogtreecommitdiff
path: root/includes/model/ShiftSignupState.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-12-23 12:48:34 +0100
committermsquare <msquare@notrademark.de>2016-12-23 12:48:34 +0100
commitb8c26b0fd0d14deb4bb89ad81d645baf9d9614a5 (patch)
tree058e32ff3a3615ba24aebdb349b3c6db229370d4 /includes/model/ShiftSignupState.php
parent9e804ba91a97bf4ef57939b4cdf4d7590ebd1c15 (diff)
fix that free shifts become green
Diffstat (limited to 'includes/model/ShiftSignupState.php')
-rw-r--r--includes/model/ShiftSignupState.php2
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();
}
}