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.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/series/trunk/index.php b/series/trunk/index.php index 9d8cb05..76eb9ff 100644 --- a/series/trunk/index.php +++ b/series/trunk/index.php
@@ -10,12 +10,9 @@ $template->add('SITENAME', instaDisc_getConfig('siteName'));
10$subs = instaDisc_getAllSubscriptions(); 10$subs = instaDisc_getAllSubscriptions();
11foreach ($subs as $name => $value) 11foreach ($subs as $name => $value)
12{ 12{
13 if ($value['personal'] == 'false') 13 $template->adds_block('SUBSCRIPTIONS', array( 'IDENTITY' => $value['identity'],
14 { 14 'TITLE' => $value['title'],
15 $template->adds_block('SUBSCRIPTIONS', array( 'IDENTITY' => $value['identity'], 15 'CATEGORY' => $value['category']));
16 'TITLE' => $value['title'],
17 'CATEGORY' => $value['category']));
18 }
19} 16}
20 17
21$template->display(); 18$template->display();