diff options
author | MaZderMind | 2014-11-09 20:59:40 +0100 |
---|---|---|
committer | MaZderMind | 2014-11-09 20:59:40 +0100 |
commit | 2cce3786bf96df6ec42ce22013c2ed8a5252e8fb (patch) | |
tree | 447fc9d8999f80e3f9c8958c989bf41d2b6bf7b5 | |
parent | b5cd8aa32cf2e9c83ec457fbb0a235cdec8e37cd (diff) |
implement correct irc channel names
-rw-r--r-- | lib/helper.php | 5 | ||||
-rw-r--r-- | template/assemblies/irc.phtml | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib/helper.php b/lib/helper.php index 0393905..79770f3 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -40,6 +40,11 @@ function link_stream($protocol, $room, $format, $translated = false) return '#'; } +function irc_channel($room) +{ + return '31C3-hall-'.strtoupper(substr($room, 4, 1)); +} + function baseurl() { if(isset($GLOBALS['CONFIG']['baseurl'])) diff --git a/template/assemblies/irc.phtml b/template/assemblies/irc.phtml index 871e751..b2b5356 100644 --- a/template/assemblies/irc.phtml +++ b/template/assemblies/irc.phtml @@ -2,7 +2,7 @@ <div class="activator"> Click to Activate <br /> - <a class="irclink" href="irc://irc.hackint.eu:6667/voc">(Directlink)</a> + <a class="irclink" href="irc://irc.hackint.eu:6667/<?=h(irc_channel($room))?>">(Directlink)</a> </div> - <iframe data-src="https://kthx.de:9090/?channels=voc-<?=h($room)?>&uio=d4" width="1020" height="372" border="0"></iframe> + <iframe data-src="https://kthx.de:9090/?channels=<?=h(irc_channel($room))?>-<?=h($room)?>&uio=d4" width="1020" height="372" border="0"></iframe> </div> |