|
Revision 1539, 382 bytes
(checked in by renato, 1 year ago)
|
Setting prop svn:eol-style in LOTS of files.
|
- Property svn:mime-type set to
text/plain
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
require_once(dirname(dirname(__FILE__))."/../includes.php"); |
|---|
| 4 |
|
|---|
| 5 |
run("profile:init"); |
|---|
| 6 |
run("weblogs:init"); |
|---|
| 7 |
run("rss:init"); |
|---|
| 8 |
|
|---|
| 9 |
define('context','resources'); |
|---|
| 10 |
global $page_owner; |
|---|
| 11 |
templates_page_setup(); |
|---|
| 12 |
$title = __gettext("Popular feeds"); |
|---|
| 13 |
|
|---|
| 14 |
$body = run("rss:subscriptions:popular"); |
|---|
| 15 |
|
|---|
| 16 |
templates_page_output($title, $body); |
|---|
| 17 |
|
|---|
| 18 |
?> |
|---|