aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaZderMind2017-04-13 20:49:38 +0200
committerMaZderMind2017-04-13 20:49:38 +0200
commitb6e311784488c0a4e500274b66f6dd69657ee2de (patch)
treeac0f239a0c15846af330c7937d0dbd728c77205f
parent5e9461ffb49d968cfaa011657d93b366bf1781f3 (diff)
ignore missing rooms
Diffstat (limited to '')
-rw-r--r--model/Schedule.php2
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()