CC-5633: Can schedule overlapping shows
The overlapping show check was returning false too early
This commit is contained in:
parent
37ea29380b
commit
9bbc3cf713
1 changed files with 1 additions and 1 deletions
|
@ -1005,7 +1005,7 @@ SQL;
|
||||||
->filterByDbId($instanceId)
|
->filterByDbId($instanceId)
|
||||||
->findOne();
|
->findOne();
|
||||||
}
|
}
|
||||||
if ($update && (!$ccShowInstance || $ccShowInstance->getDbModifiedInstance() == true)) {
|
if ($update && ($ccShowInstance && $ccShowInstance->getDbModifiedInstance() == true)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue