diff options
Diffstat (limited to '')
-rw-r--r-- | formats.php | 18 |
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'], -)); |