about summary refs log tree commit diff stats
path: root/central/trunk/index.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-06-23 10:00:56 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-06-23 10:00:56 +0000
commit24ee5485d1bb0c86833977dbfbd2e4999dba8e16 (patch)
treeb428b873939bcd7059291eeaeac07b06eb2ec0fa /central/trunk/index.php
parentc6e3d927c343280bc1fd6d0dfdb64658151e9aac (diff)
downloadinstadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.tar.gz
instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.tar.bz2
instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.zip
Moved over to the Four Island Templating System.
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?>