CC-3536 : Work out ACL with library on NowPlaying when it's a guest User
This commit is contained in:
parent
1e9348f27f
commit
d12ef1c7a2
8 changed files with 72 additions and 39 deletions
|
@ -47,7 +47,10 @@ class Application_Model_Scheduler {
|
|||
throw new Exception("Invalid Request.");
|
||||
}
|
||||
|
||||
$schedIds = array_keys($schedInfo);
|
||||
$schedIds = array();
|
||||
if (isset($schedInfo)) {
|
||||
$schedIds = array_keys($schedInfo);
|
||||
}
|
||||
$schedItems = CcScheduleQuery::create()->findPKs($schedIds, $this->con);
|
||||
$instanceIds = array_keys($instanceInfo);
|
||||
$showInstances = CcShowInstancesQuery::create()->findPKs($instanceIds, $this->con);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue