aboutsummaryrefslogtreecommitdiff
path: root/model/RoomTab.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--model/RoomTab.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/model/RoomTab.php b/model/RoomTab.php
index d4f781b..f0338d2 100644
--- a/model/RoomTab.php
+++ b/model/RoomTab.php
@@ -29,6 +29,14 @@ class RoomTab
public function getDisplay()
{
- return ucfirst($this->getTab());
+ $tab = $this->getTab();
+ switch($tab)
+ {
+ case 'music':
+ return 'Radio';
+
+ default:
+ return ucfirst($tab);
+ }
}
}