aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorMaZderMind2014-11-09 20:28:50 +0100
committerMaZderMind2014-11-09 20:28:50 +0100
commitb5cd8aa32cf2e9c83ec457fbb0a235cdec8e37cd (patch)
tree5efcab448905e9af7441239a1ecbfd3cf6869c85 /index.php
parent21cb56374ff92578e447e8aadafb1aba2d56e5e0 (diff)
move init-code into bootstrap-file
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/index.php b/index.php
index 96bb197..4faff27 100644
--- a/index.php
+++ b/index.php
@@ -1,13 +1,9 @@
<?php
-require_once('lib/PhpTemplate.php');
-require_once('lib/helper.php');
-require_once('lib/config.php');
+require_once('lib/bootstrap.php');
-$tpl = new PhpTemplate('template/page.phtml');
echo $tpl->render(array(
'page' => 'rooms',
- 'baseurl' => baseurl(),
'title' => 'Overview',
'rooms' => $GLOBALS['CONFIG']['ROOMS'],