diff options
Diffstat (limited to 'room.php')
-rw-r--r-- | room.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/room.php b/room.php deleted file mode 100644 index 8f4db1f..0000000 --- a/room.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' => 'rooms', - 'baseurl' => baseurl(), - 'title' => 'Stream-Formats', - 'subtitle' => ucfirst($room), - - 'room' => $room, - 'formats' => array('hd','hq','lq','audio','slides'), -)); |