CC-3174 : showbuilder
make sure the scheduled item still exists, if not throw an error.
This commit is contained in:
parent
b5f510de85
commit
31abc21aaa
1 changed files with 4 additions and 1 deletions
|
@ -138,6 +138,9 @@ class Application_Model_Scheduler {
|
|||
|
||||
if ($id !== 0) {
|
||||
$schedItem = CcScheduleQuery::create()->findPK($id, $this->con);
|
||||
if (is_null($schedItem)) {
|
||||
throw new OutDatedScheduleException("The schedule you're viewing is out of date!");
|
||||
}
|
||||
$instance = $schedItem->getCcShowInstances($this->con);
|
||||
if (intval($schedule["instance"]) !== $instance->getDbId()) {
|
||||
throw new OutDatedScheduleException("The schedule you're viewing is out of date!");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue