summaryrefslogtreecommitdiff
path: root/actions/favorited.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/favorited.php')
-rw-r--r--actions/favorited.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/actions/favorited.php b/actions/favorited.php
index ba41cbc3d..081c13df8 100644
--- a/actions/favorited.php
+++ b/actions/favorited.php
@@ -38,15 +38,14 @@ class FavoritedAction extends StreamAction {
}
function show_top() {
- if (common_logged_in()) {
- common_notice_form('public');
- }
-
+ $instr = $this->get_instructions();
+ $output = common_markup_to_html($instr);
+ common_element_start('div', 'instructions');
+ common_raw($output);
+ common_element_end('div');
$this->public_views_menu();
}
- // XXX Need to make RSS stream
-
function show_header() {
common_element('link', array('rel' => 'alternate',
'href' => common_local_url('favoritedrss'),
@@ -54,6 +53,10 @@ class FavoritedAction extends StreamAction {
'title' => _('Favorited Stream Feed')));
}
+ function get_instructions() {
+ return _('Showing most favorited notices from the last week');
+ }
+
function show_notices($page) {
// XXX: Make dropoff configurable like tags?