about summary refs log tree commit diff stats
path: root/central/trunk/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'central/trunk/index.php')
-rw-r--r--central/trunk/index.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/central/trunk/index.php b/central/trunk/index.php index 6ba21ab..8ced805 100644 --- a/central/trunk/index.php +++ b/central/trunk/index.php
@@ -2,12 +2,13 @@
2 2
3/* InstaDisc Server - A Four Island Project */ 3/* InstaDisc Server - A Four Island Project */
4 4
5include('common.php'); 5include('includes/common.php');
6 6
7?>Welcome to the <?php echo($config['title']); ?> InstaDisc Server!<P><?php 7$template = new FITemplate('index');
8$template->add('TITLE', $config['title']);
9$template->add('TEXT', $config['text']);
10$template->display();
8 11
9echo($config['text']); 12include('includes/footer.php');
10
11include('footer.php');
12 13
13?> 14?>