-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrssfeeds.php
More file actions
33 lines (26 loc) · 1012 Bytes
/
rssfeeds.php
File metadata and controls
33 lines (26 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
// The source code packaged with this file is Free Software, Copyright (C) 2005 by
// Ricardo Galli <gallir at uib dot es>.
// It's licensed under the AFFERO GENERAL PUBLIC LICENSE unless stated otherwise.
// You can get copies of the licenses here:
// http://www.affero.org/oagpl.html
// AFFERO GENERAL PUBLIC LICENSE is also included in the file called "COPYING".
include_once('Smarty.class.php');
$main_smarty = new Smarty;
include('config.php');
include(mnminclude.'html1.php');
include(mnminclude.'link.php');
include(mnminclude.'smartyvariables.php');
// sidebar
$main_smarty = do_sidebar($main_smarty);
// breadcrumbs and page title
$navwhere['text1'] = Feeds;
$navwhere['link1'] = getmyurl('about', $dblang);
$main_smarty->assign('navbar_where', $navwhere);
// pagename
define('pagename', 'rssfeeds');
$main_smarty->assign('pagename', pagename);
// show the template
$main_smarty->assign('tpl_center', $the_template . '/rssfeeds');
$main_smarty->display($the_template . '/pligg.tpl');
?>