about summary refs log tree commit diff stats
path: root/series/trunk/index.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-09-18 21:59:23 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-09-18 21:59:23 +0000
commitfd3f2cbdaa1e3c160727c3cf09ef03d06174c114 (patch)
tree12ea30a00c68891f2fbc01f5b2730bc6edc153aa /series/trunk/index.php
parentd2a7b26e98569624347d717d7fdfe6c3074658a9 (diff)
downloadinstadisc-fd3f2cbdaa1e3c160727c3cf09ef03d06174c114.tar.gz
instadisc-fd3f2cbdaa1e3c160727c3cf09ef03d06174c114.tar.bz2
instadisc-fd3f2cbdaa1e3c160727c3cf09ef03d06174c114.zip
Series: Removed Series component
Refs #57
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?>