aboutsummaryrefslogtreecommitdiff
path: root/model/Room.php
diff options
context:
space:
mode:
authorMaZderMind2015-03-31 07:00:00 +0200
committerMaZderMind2015-03-31 07:00:00 +0200
commite7e4b690cd094a337d10a514f79b224fdaac0a39 (patch)
tree4f9566e4260fb3e654c37a6639edfbbd5c3e40f5 /model/Room.php
parenta24c029248cd8db3d1eb7ace83b7df5c835a2b64 (diff)
Fix getSelections()
Diffstat (limited to '')
-rw-r--r--model/Room.php2
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;
}