root/releases/0.6rc2/_rss/subscriptions.php

Revision 296, 0.7 kB (checked in by carmartin, 3 years ago)

Includes should use full path given that we know where things are. Patch 1.

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     require_once(dirname(dirname(__FILE__))."/includes.php");
4     
5     global $page_owner;
6
7     run("weblogs:init");
8     run("profile:init");
9     run("rss:init");
10     
11     define('context','resources');
12
13     templates_page_setup();   
14
15     $title = run("profile:display:name") ." :: " . gettext("Feeds");
16     
17     $body = run("rss:subscriptions",$feed);
18     
19     $body = templates_draw(array(
20                     'context' => 'contentholder',
21                     'title' => $title,
22                     'body' => $body
23                 )
24                 );
25     
26     echo templates_page_draw( array(
27                     $title, $body
28                 )
29                 );
30
31 ?>
Note: See TracBrowser for help on using the browser.