about summary refs log tree commit diff stats
path: root/series/trunk/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'series/trunk/index.php')
-rw-r--r--series/trunk/index.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/series/trunk/index.php b/series/trunk/index.php deleted file mode 100644 index 76eb9ff..0000000 --- a/series/trunk/index.php +++ /dev/null
@@ -1,20 +0,0 @@
1<?php
2
3/* InstaDisc Series - A Four Island Project */
4
5include('includes/instadisc.php');
6
7$template = new FITemplate('index');
8$template->add('SITENAME', instaDisc_getConfig('siteName'));
9
10$subs = instaDisc_getAllSubscriptions();
11foreach ($subs as $name => $value)
12{
13 $template->adds_block('SUBSCRIPTIONS', array( 'IDENTITY' => $value['identity'],
14 'TITLE' => $value['title'],
15 'CATEGORY' => $value['category']));
16}
17
18$template->display();
19
20?>