aboutsummaryrefslogtreecommitdiff
path: root/formats.php
diff options
context:
space:
mode:
authorMaZderMind2014-10-19 12:12:20 +0200
committerMaZderMind2014-10-19 12:12:20 +0200
commitf652ae2be38e74796ed63ba72e23fcb632818118 (patch)
treefac87e88a3928b789c0d9b7f4a9a2ac5b6cbb77e /formats.php
parentc2f7758004a9016910168ad47c1a4300e107f2c2 (diff)
restructure room site to produce a unique room/player/formats page
Diffstat (limited to '')
-rw-r--r--formats.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/formats.php b/formats.php
deleted file mode 100644
index 4084804..0000000
--- a/formats.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-require_once('lib/PhpTemplate.php');
-require_once('lib/helper.php');
-require_once('config.php');
-
-$room = $_GET['room'];
-
-$tpl = new PhpTemplate('template/page.phtml');
-echo $tpl->render(array(
- 'page' => 'formats',
- 'baseurl' => baseurl(),
- 'title' => 'Stream-Formats',
- 'subtitle' => $GLOBALS['CONFIG']['ROOMS'][$room],
-
- 'room' => $room,
- 'formats' => $GLOBALS['CONFIG']['FORMATS'],
-));