diff options
author | MaZderMind | 2017-04-13 20:49:38 +0200 |
---|---|---|
committer | MaZderMind | 2017-04-13 20:49:38 +0200 |
commit | b6e311784488c0a4e500274b66f6dd69657ee2de (patch) | |
tree | ac0f239a0c15846af330c7937d0dbd728c77205f /model/Schedule.php | |
parent | 5e9461ffb49d968cfaa011657d93b366bf1781f3 (diff) |
ignore missing rooms
Diffstat (limited to 'model/Schedule.php')
-rw-r--r-- | model/Schedule.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Schedule.php b/model/Schedule.php index 58442a4..ec4ddc7 100644 --- a/model/Schedule.php +++ b/model/Schedule.php @@ -41,7 +41,7 @@ class Schedule public function getMappedRoom($scheduleRoom) { $mapping = $this->getScheduleToRoomSlugMapping(); - return $this->getConference()->getRoomIfExists( $mapping[$scheduleRoom] ); + return $this->getConference()->getRoomIfExists( @$mapping[$scheduleRoom] ); } private function fetchSchedule() |