about summary refs log tree commit diff stats
path: root/series/core/trunk/index.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-09-10 21:06:49 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-09-10 21:06:49 +0000
commit44c3bc48b5db7b3dc6517d2b073a55af5d4b52db (patch)
treea48f63061f3cfe5427ce1bc313147cf6be0e739a /series/core/trunk/index.php
parenta9a796498285358e7a2f1fde5043e4015de5db70 (diff)
downloadinstadisc-44c3bc48b5db7b3dc6517d2b073a55af5d4b52db.tar.gz
instadisc-44c3bc48b5db7b3dc6517d2b073a55af5d4b52db.tar.bz2
instadisc-44c3bc48b5db7b3dc6517d2b073a55af5d4b52db.zip
Series: Moved around directory structure
Refs #55
Diffstat (limited to 'series/core/trunk/index.php')
-rw-r--r--series/core/trunk/index.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/series/core/trunk/index.php b/series/core/trunk/index.php deleted file mode 100644 index 9d8cb05..0000000 --- a/series/core/trunk/index.php +++ /dev/null
@@ -1,23 +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 if ($value['personal'] == 'false')
14 {
15 $template->adds_block('SUBSCRIPTIONS', array( 'IDENTITY' => $value['identity'],
16 'TITLE' => $value['title'],
17 'CATEGORY' => $value['category']));
18 }
19}
20
21$template->display();
22
23?>