diff options
author | MaZderMind | 2015-04-04 13:31:01 +0200 |
---|---|---|
committer | MaZderMind | 2015-04-04 13:31:34 +0200 |
commit | 6913b01e5d9a062ac49553b02226f82c0171661c (patch) | |
tree | 1d2ae6c356e802a9e758acc923c05b962291832d /template | |
parent | b8f51fa77f3ebb19ee7d54ef10e655176ae249c2 (diff) |
Show Display-Names and Link Rooms in Relive-View
Diffstat (limited to 'template')
-rw-r--r-- | template/relive.phtml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/relive.phtml b/template/relive.phtml index e59f366..0ca33be 100644 --- a/template/relive.phtml +++ b/template/relive.phtml @@ -54,7 +54,11 @@ </li> <li> <span class="fa fa-sign-in"></span> - <?=h($talk['room'])?> + <? if(isset($talk['roomlink'])): ?> + <a href="<?=h($talk['roomlink'])?>"><?=h($talk['room'])?></a> + <? else: ?> + <?=h($talk['room'])?> + <? endif ?> </li> </ul> |