Small tweak to the default template.
[elgg.git] / _rss / popular.php
blob2f349fd3fc93caab1a9113eb3023da53bcf4e769
1 <?php
3 require("../includes.php");
5 run("profile:init");
6 run("weblogs:init");
7 run("rss:init");
9 define('context','resources');
10 global $page_owner;
12 $title = gettext("Popular feeds");
14 $body = run("rss:subscriptions:popular",$feed);
16 $body = templates_draw( array(
17 'context' => 'contentholder',
18 'title' => $title,
19 'body' => $body
23 echo templates_page_draw( array(
24 $title, $body