Small tweak to the default template.
[elgg.git] / _rss / subscriptions.php
blobe85c2edd78939d2e138e951fe059d67933b63ea3
1 <?php
3 require("../includes.php");
5 global $page_owner;
7 run("weblogs:init");
8 run("profile:init");
9 run("rss:init");
11 define('context','resources');
13 templates_page_setup();
15 $title = run("profile:display:name") ." :: " . gettext("Feeds");
17 $body = run("rss:subscriptions",$feed);
19 $body = templates_draw(array(
20 'context' => 'contentholder',
21 'title' => $title,
22 'body' => $body
26 echo templates_page_draw( array(
27 $title, $body