diff options
author | MaZderMind | 2015-03-31 07:00:00 +0200 |
---|---|---|
committer | MaZderMind | 2015-03-31 07:00:00 +0200 |
commit | e7e4b690cd094a337d10a514f79b224fdaac0a39 (patch) | |
tree | 4f9566e4260fb3e654c37a6639edfbbd5c3e40f5 /model/Room.php | |
parent | a24c029248cd8db3d1eb7ace83b7df5c835a2b64 (diff) |
Fix getSelections()
Diffstat (limited to 'model/Room.php')
-rw-r--r-- | model/Room.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Room.php b/model/Room.php index 12c8881..3f0cbb2 100644 --- a/model/Room.php +++ b/model/Room.php @@ -199,7 +199,7 @@ class Room extends ModelBase { $selections = array(); foreach($this->getSelectionNames() as $selection) - $selections[$tab] = $this->createSelectionObject($selection); + $selections[$selection] = $this->createSelectionObject($selection); return $selections; } |