about summary refs log tree commit diff stats
path: root/central/trunk/mansub.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-09-06 21:42:34 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-09-06 21:42:34 +0000
commitfe678d3e0ed345aa5edbc9dd0ae98faa7cc322c0 (patch)
treeef4aca9adde8522de8d3e6f56107045be00799f1 /central/trunk/mansub.php
parent0b80d600e22ac218a59e1c09967a3caee91b1981 (diff)
downloadinstadisc-fe678d3e0ed345aa5edbc9dd0ae98faa7cc322c0.tar.gz
instadisc-fe678d3e0ed345aa5edbc9dd0ae98faa7cc322c0.tar.bz2
instadisc-fe678d3e0ed345aa5edbc9dd0ae98faa7cc322c0.zip
Central: Started moving to Series
Refs #28
Diffstat (limited to 'central/trunk/mansub.php')
-rw-r--r--central/trunk/mansub.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/central/trunk/mansub.php b/central/trunk/mansub.php deleted file mode 100644 index b36966f..0000000 --- a/central/trunk/mansub.php +++ /dev/null
@@ -1,27 +0,0 @@
1<?php
2
3/* InstaDisc Server - A Four Island Project */
4
5include('includes/instadisc.php');
6include('includes/template.php');
7
8if (isset($_SESSION['username']))
9{
10 $template = new FITemplate('mansub');
11 $template->add('SITENAME', instaDisc_getConfig('siteName'));
12
13 $subs = instaDisc_listSubscriptions($_SESSION['username']);
14 $i=0;
15 for ($i=0;$i<$subs['size'];$i++)
16 {
17 $template->adds_block('SUBSCRIPTIONS', array( 'URL' => $subs[$i],
18 'ID' => $i,
19 'EVEN' => (($i % 2 == 0) ? " CLASS=\"even\"" : "")));
20 }
21
22 $template->display();
23} else {
24 header('Location: index.php');
25}
26
27?>