fix shift signup state being combined to null

This commit is contained in:
msquare 2016-11-24 09:32:32 +01:00
parent 16e9a69c0d
commit ff31d0a1c5
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ function shift_controller() {
if ($shift_signup_state == null) {
$shift_signup_state = $angeltype_signup_state;
} else {
$shift_signup_state = $shift_signup_state->combineWith($angeltype_signup_state);
$shift_signup_state->combineWith($angeltype_signup_state);
}
}