summaryrefslogtreecommitdiff
path: root/actions/public.php
diff options
context:
space:
mode:
authorcsarven <csarven@controlyourself.ca>2008-12-05 17:14:02 -0500
committercsarven <csarven@controlyourself.ca>2008-12-05 17:14:02 -0500
commit33a054ccc03eba0caff95c04ddf99d0ac6b7ac19 (patch)
treeb0f7aa862f7a22a46afda67bfd7c8143037caf02 /actions/public.php
parent7def4d227f655202176cb913a87127704a058a14 (diff)
trac855 trac856 and Feed list for the Favorited page
darcs-hash:20081205221402-eefa4-9c765fe3c7a6e0cf9cdee1749ed2bebb24d3deaf.gz
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
+}