Small tweak to the default template.
[elgg.git] / _rss / index.php
blobaf4eb3184a9b680c3fe5a1e48c39322fa0189d6b
1 <?php
3 require("../includes.php");
5 run("weblogs:init");
6 run("profile:init");
7 run("rss:init");
9 define('context','resources');
10 global $page_owner;
11 templates_page_setup();
12 $title = run("profile:display:name") ." :: " . gettext("Feeds");
14 run("rss:update:all",$page_owner);
15 $body = run("rss:view",$page_owner);
17 $body = templates_draw(array(
18 'context' => 'contentholder',
19 'title' => $title,
20 'body' => $body
24 echo templates_page_draw( array(
25 $title, $body