diff options
author | MaZderMind | 2014-11-09 23:48:37 +0100 |
---|---|---|
committer | MaZderMind | 2014-11-09 23:48:37 +0100 |
commit | 2708b8c41c079d27b0d135f658bab5eabed15d71 (patch) | |
tree | 5381620a606103261f9662774d5c5787c793e202 | |
parent | 67b54b2848d65b0065856ced90913aa7d02bb3c5 (diff) |
fix swapped tab-list
-rw-r--r-- | template/room.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/room.phtml b/template/room.phtml index 78d470d..e496050 100644 --- a/template/room.phtml +++ b/template/room.phtml @@ -4,9 +4,9 @@ <ul class="nav nav-tabs nav-justified"> <? if($miniroom) - $tabs = array('video', 'audio', 'slides'); - else $tabs = array('video', 'audio'); + else + $tabs = array('video', 'audio', 'slides'); ?> <? foreach($tabs as $iter): ?> <li |