summaryrefslogtreecommitdiff
path: root/actions/public.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/public.php')
-rw-r--r--actions/public.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/actions/public.php b/actions/public.php
index 753b9d07f..8a41dcd56 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -53,6 +53,16 @@ class PublicAction extends StreamAction {
}
$this->public_views_menu();
+
+
+ $this->show_feeds_list(array(0=>array('href'=>common_local_url('publicrss'),
+ 'type' => 'rss',
+ 'version' => 'RSS 1.0',
+ 'item' => 'publicrss'),
+ 1=>array('href'=>common_local_url('publicatom'),
+ 'type' => 'atom',
+ 'version' => 'Atom 1.0',
+ 'item' => 'publicatom')));
}
function get_instructions() {
@@ -92,4 +102,4 @@ class PublicAction extends StreamAction {
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
$page, 'public');
}
-} \ No newline at end of file
+}